Ambiguous Query Results
Posted: Fri Oct 15, 2004 9:00 am
Hi all. I'm hoping someone with more knowledge than me can help with this little canundrum...
I have the following query:
Which counts the number of records. However, if I echo the results on screen I get 136 but if I stuff them into a tale I get 127.
Mad, I know but it's true...!
I have the following query:
Code: Select all
// Count Total Users:
$Query11 = "SELECT COUNT(*) FROM MembersData
WHERE ID != ''";
$Result11 = mysql_query($Query11) or die("Error 11: " . mysql_error());
$UsersTotal = mysql_result($Result11, 0);Mad, I know but it's true...!