Salve a tutti,
Allora lo script funge alla perfezione, ma nel header rimane questo errore:
codice:
( ! ) Notice: Undefined variable: tabella in C:\wamp\www\Templates\highscore.php on line 7
Questa è la riga 7:
Codice PHP:
<td> - Punti: [b]".$uscita['points']."[/b] </td> </tr></p>";
E questo è "tutto" lo script:
Codice PHP:
<?php $Query = mysql_query("SELECT * FROM db_users ORDER BY `points` DESC"); while($uscita=mysql_fetch_array($Query)){ $tabella .= "
<tr><td>User:[b] ".$uscita['username']."[/b] </td> <td> - Punti: [b]".$uscita['points']."[/b] </td> </tr></p>"; } ?>
Da cosa dipende? 
Ps: Lo script funziona alla perferzione.