$sql = \\\"SELECT * FROM foto ORDER BY id_foto DESC LIMIT 0,18\\\";
$result = mysql_query(\\\"$sql\\\") or die (\\\"Invalid query: \\\" . mysql_error());
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
$file = $row[\\\'file\\\'];
$nome = $row[\\\'nome_foto\\\'];
$id_foto = $row[\\\'id_foto\\\'];
$id_cat = $row[\\\'id_cat\\\'];
?>

\\\" alt=\\\" echo $nome; ?>\\\" class=\\\"border_image\\\" />
} ?>
// query per estrarre le immagini per lo slideshow
$sql_foto = \\\"SELECT * FROM foto ORDER BY RAND() LIMIT 0,20\\\";
$result_foto = mysql_query(\\\"$sql_foto\\\") or die (\\\"Invalid query: \\\" . mysql_error());
while ($row_foto = mysql_fetch_array($result_foto, MYSQL_ASSOC)){
$nome_foto = $row_foto[\\\'nome_foto\\\'];
$data = $row_foto[\\\'data_foto\\\'];
$note = $row_foto[\\\'descrizione_foto\\\'];
$file = $row_foto[\\\'file\\\'];
?>

\\\" alt=\\\" echo $nome_foto; ?>\\\" title=\\\" echo $nome_foto; ?>\\\" />
} ?>