Risolto :mavieni:
Questo il codice:
Codice PHP:
echo "<div align=\"center\">\n<table height=\"33\" cellspacing=\"0\" cellpadding=\"0\">\n";
$lettera=$_GET['lett'];
$query = mysql_query ("select * from voti where titolo like '{$lettera}%' order by titolo");
while($res = mysql_fetch_array($query)) {
echo " <tr>\n <td height=\"11\">";
echo "<img src=\"ep.gif\">";
echo "[b]<a href=\"page.php?id=" . $res['id'] . "\">" . $res['titolo'] . "</a>[/b]
";
echo "</td>\n </tr>\n";
}
mysql_close();
?>
Grazie a tutti!!