Jump to content

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

Changed to:

 

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

 

Still getting a 500 error. :(

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.