Jump to content

Foreach loop, not looping?


lalnfl

Recommended Posts

$sql_get_worker = mysql_query("SELECT id FROM Worker WHERE mem_id='$id' AND retired='n'");

$get_worker = mysql_fetch_assoc($sql_get_worker);

 

foreach ($get_worker as $value){

 

$sql_get_worker = mysql_query("SELECT * FROM Worker WHERE id='$value'");

$get_worker = mysql_fetch_array($sql_get_worker);

 

$worker_firstname = $get_worker['firstname'];

$worker_lastname = $get_worker['lastname'];

 

$worker_options .= "<option value='$value'>$worker_firstname $worker_lastname</option>";

 

}

 

How about this then? There are two rows that return with this id, but yet only one is returning.

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.