Basically, I have this code;
<?php
$query = "select *
from `winningflight`
order by points desc";
$result = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array($result);
echo $row['flight'];
?>
This is the table
It always shows A, not B






Reply With Quote





