Hi please can you tell me how to get this script so that it recognises each row as a variable.
<?php
include("connectdb.inc.php");
$querytop= mysql_query( "select outwarusername, outwarlink, points, clicks from outwarinfo order by points desc limit 5" );
while ( $row=mysql_fetch_array($querytop) )
{
$outwarname=$row["outwarusername"];
$outwarlink=$row["outwarlink"];
$outwarpoints=$row["points"];
$outwarclicks=$row["clicks"];
print "<table><tr><td width=150>$outwarname</td><td width=300><a href=\"$outwarlink\" target=\"_blank\">$outwarlink</a></td><td width=100>$outwarpoints</td><td width=\"100\">$outwarclicks</td></tr></table>";
}
?>
Thanks, Nixon