Jump to content

Looping through a mySQL IN() query.. and stuck


monkeytooth

Recommended Posts

Ok, this is my query..

 

SELECT email FROM memb_loginInfo WHERE email IN ('".$email."') ORDER BY email ASC

 

Which if I run that through phpMyAdmin I yield 5 results, even running it through my script I am still yielding 5 results as per echoing out the num_rows tells me. But when I try to loop through the output arrays worth of data I can only get the first result. I have tried for, foreach, while to no success. Only thing that outputs anything is the foreach. Yet I only get one.

 

						foreach($row as $found)
					{
						//echo $found;
						$outputArray['output'][] = array('name' => "none", 'email' => $row['email']);
					}			

 

Where am I going wrong here?

Link to comment
Share on other sites

You're not showing enough of your code, but it would go something like this:

 

$query = "SELECT email
          FROM memb_loginInfo
          WHERE email IN ('{$email}')
          ORDER BY email ASC";
$result = mysql_query($query);

while($row = mysql_fetch_assoc($result))
{
    echo "{$row['email']}<br>\n";
}

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.