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
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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.