Ciao!!! Ekko come puoi fare:
<?
$host='localhost';
$utente='root';
$password='';
$connect=mysql_connect($host, $utente, $password)
or die('connection error');
$db=mysql_select_db("my_infocalcio");
$sql="SELECT * FROM serie_a_ita ORDER BY Punti";
$query = mysql_query($sql);
while ($ris = mysql_fetch_array($query)) {
foreach ($ris as $a);
echo "La squadra ".$ris['squadra']. " ha totalizzato" . $ris['punti']. " nel campinato";
}
?>
E poi richiami tutti i risultati con $ris['nome_campo']..
Fammi sapere se è a posto.... ciauuuuuu
per poi visualizzarli nella tabella crei la tablella:
<?
echo "
<table....>
<td...>$ris['punti']</td>
...........
</table>
";
?>
PHPIT !!!
![]()