prova così:

Codice PHP:
<?

/* Connessione e estrazione News */
@mysql_connect($host_name$user$psw) or die(mysql_error());
$all_rew = @mysql($db_name"SELECT * FROM tb_film ORDER BY id_film DESC LIMIT 0,5");

$rew='';
while(
$record mysql_fetch_array($all_rew)){
         
$rew .= "<tr><td><a href=\"\">".$record['Foto_miniatura']."</a></td><td>".$record['Titolo']."</td></tr>";              
 }
 
print 
"<table width=\"100%\">"
  print 
$rew
print 
"</table>";       
     


?>
:metallica