Le chiusure delle graffe, sono PHP, e non codice html; mi riferisco a questo:
Codice PHP:
</table>
}
}
</body>
E sostituiscilo con:
Codice PHP:
</table>
<?php
}
}
?>
</body>
(indentando un po per una migliore lettura )
Ciao!
EDIT:
non vorrei fare quello che da la pappa pronta, ma così è lievemente più leggibile:
Codice PHP:
<html>
<body background="s1.gif">
<?php
$username="giacomofabbian";
$password="";
$database="my_giacomofabbian";
mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die("Impossibile selezionare il database");
$query="SELECT * FROM Agenti";
$risultati=mysql_query($query);
$numrows = mysql_num_rows($risultati);
if ($numrows==0) {
echo "Database vuoto!";
}
else
{
for($x=0; $x<$numrows; $x++) {
$resrow = mysql_fetch_row($risultati);
$codag = $resrow[0];
$nome = $resrow[1];
$cognome = $resrow[2];
$nvendite = $resrow[3];
?>
<table>
<tr>
<td> <?php echo $codag; ?> </td>
<td> <?php echo $nome; ?> </td>
</tr>
</table>
<?php
}
}
?>
</body>
</html>