Codice PHP:
$connect=mysql_connect($host,$user,$password2);
mysql_select_db($database,$connect)
or die ("Impossibile connettersi al database".$database);
$tornei = mysql_query("SELECT username2 FROM `tornei`");
while($row = mysql_fetch_row($tornei))
{
echo "<h2><font face=\"Georgia, Arial, Garamond\">ciao {$row[0]} </font></h2><br />";}