I am using this query below and it is not printing any info on my web page. Can anyone see where I am going wrong?? Thanks
PS the login and password have been changed for this post.
<?PHP
$con = mysql_connect("supremeserver11.com","pcgamez_database","1554789");
mysql_select_db("pcgamez_database");
$query = "Select file_name, file_rating from pafiledb_files order by file_rating desc limit 0, 10";
$result = mysql_query($query) or die("Can't complete query ".mysql_error());
While( $row = mysql_fetch_array($result));
{
echo $row[file_name];
echo $row[file_rating];
echo "<br>";
}
?>