Jump to content

[SOLVED] Query inside while loop?


waynew

Recommended Posts

Hey guys.

 

I'm taking a list of distinct contact names from a table and placing them into an array. That's working well; did a var dump and everything is fine. My problem is in using that contact names array to select other values from another table. I've tried everything and keep getting a 500 error off Apache. Here's the code. Any help would be great.

 

while($i < sizeof($contacts){
  
  $contact_person = $contacts[$i];
  $result = mysql_query("Select phone from jobs where contact_name = '$contact_person' limit 1");
  $i++;

 

PS: I know that there is a problem with me using result repeatedly, which would result in the result being overwritten each time. Is there any solution to this problem? ??? ???

Link to comment
https://forums.phpfreaks.com/topic/110913-solved-query-inside-while-loop/
Share on other sites

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.