In questo script secondo voi è sbagliata la sintassi tra td e tr ?
Grazie
Pier
<?
echo "<table border=5 cellspacing=4 cellpadding=4 width=80% height=80%>";
if(file_exists('foto/'.$row[LISTA].'-'.$row[POSIZIONE].'.jpg')) {
echo "<tr><td rowspan=10><center><a href=\"indexposta.php?N=$row[N]\" title=\"Acquista\"><img src=foto/$row[LISTA]-$row[POSIZIONE].jpg></tr>";
}
else
{
echo "<tr><td rowspan=10><center><img src=foto/1.jpg></tr>";
}
echo "<tr><td>N<td><p align='left'> $row[N]<font color='white'>LISTA</font><font color='white'> $row[LISTA]</font><font color='white'>POSIZIONE</font><font color='white'> $row[POSIZIONE]</font></tr>";
echo "<tr><td>Autore<td><p align=justify> $row[AUTORE]</tr>";
echo "<tr><td>Titolo<td><p align=justify> $row[TITOLO]</tr>";
echo "<tr><td>Editore<td><p align=justify> $row[EDITORE]</tr>";
echo "<tr><td>Anno<td><p align=justify> $row[ANNO]</tr>";
echo "<tr><td>Descrizione<td><p align=justify> $row[DESCRIZIONE]</tr>";
echo "<tr><td>Stato<td><p align=justify>disponibile</tr>";
echo "<tr><td>Prezzo<td> € $row[PREZZO],00</tr>";
echo "<tr><td colspan=2><center><a href=\"Condizioni.php\" target=\"_parent\" title=\"Condizioni di vendita\">Condizioni di vendita</a>
<a href=\"indexposta.php?N=$row[N]\" title=\"Acquista\"><img border=0 width=50 height=60 src=\"icona carrello.gif\"></a></tr>";
echo "</table>";
mysql_close($db);
?>