Codice PHP:
<?php
$connessione=mysql_connect("localhost", "root", "");
$selezione_db=mysql_select_db("my_pes5league", $connessione);
?>
<HTML>
<HEAD>
<TITLE>Risultati PHP</TITLE>
</HEAD>
<BODY>
<?php
$lettura_risultati=mysql_query("SELECT nome_squadra, SUM(punti) AS totpti, SUM(vittorie) AS totv, SUM(pareggi) AS totp, SUM(sconfitte) AS tots, SUM(reti_fatte) AS totrf, SUM(reti_subite) AS totrs
FROM risultati
GROUP BY nome_squadra
ORDER BY totpti DESC, totrf DESC, totrs ASC");
?>
<table>
<tr>
<td>Squadra</td>
<td>Punti</td>
<td>Vittorie</td>
<td>Pareggi</td>
<td>Sconfitte</td>
<td>Reti fatte</td>
<td>Reti subite</td>
</tr>
<?
while($ris=mysql_fetch_array($lettura_risultati)){
$nome_squadra=$ris['nome_squadra'];
$punti=$ris['totpti'];
$vitt=$ris['totv'];
$par=$ris['totp'];
$sconf=$ris['tots'];
$rf=$ris['totrf'];
$rs=$ris['totrs'];
echo "<tr>";
echo "<td>$nome_squadra</td>";
echo "<td>$punti</td>";
echo "<td>$vitt</td>";
echo "<td>$par</td>";
echo "<td>$sconf</td>";
echo "<td>$rf</td>";
echo "<td>$rs</td>";
echo "</tr>";
}
?>
</table>
</BODY>
</HTML>