Con una cosa del genere, fino ad ora ha sempre fatto il suo dovere.
<html>
<head>
<title>prova</title>
</head>
<body>
<?
$config['host'] = 'localhost';
$config['user'] = 'user';
$config['pass'] = 'pass';
$config['dat'] = 'database';
$config['rows_for_line'] = '4';
mysql_connect($config['host'],$config['user'],$config['pass']);
mysqL_select_db($config['dat']);
$r_h = mysql_query('SELECT title FROM Thread');
echo mysql_num_rows($r_h). ' risultati prodotti';
echo '<table>';
$r = 1;
for($c=1;;$c++) {
$res = mysql_fetch_array($r_h);
if($r == 1) echo '<tr>'."\n";
echo '<td>'.($res['title'] !== NULL ? $res['title'] : 'Vuoto').'</td>'."\n";
if($r == $config['rows_for_line']) {echo '</tr>'."\n";$r = 0;}
$r++;
if ($c >= mysql_num_rows($r_h) && is_int(($c / $config['rows_for_line']))) break;
}
echo '</table>';
?>
</body>
</html>