Jump to content

[SOLVED] Conflicting database results


86Stang

Recommended Posts

I'm doing a SELECT from the database and getting a conflict in the results.

 

$sql = "SELECT * FROM members";
$result = mysql_query($sql) or die('Query failed.');

echo "You currently have " . mysql_num_rows($result) . " records.<br><br>";

$i=1;
while ($row = mysql_fetch_array($result))
{	
echo "#" . $i . " - " . $row[19] . "<br>";
$i++;
}

 

The resulting output is:

 

"You currently have 39 records" ... but when I do the while loop, it only shows 38 records.  Any thoughts?

Link to comment
https://forums.phpfreaks.com/topic/86387-solved-conflicting-database-results/
Share on other sites

LOL. The code in the first post was edited. Kind of makes you want to quote entire posts when you reply to them, even though that clutters up the thread, so you have a record in your post of what you were providing an answer to, so as not to look foolish.

 

86Stang, it is impolite to change your question.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.