Is this your exact code?  I ask, because the following should generate a parse error:
echo "<option value = ''></option>";

You have 3 double-quotes (").

----- Original Message ----- 
From: "James Brennan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 07, 2003 7:29 PM
Subject: [PHP] help - WHILE in FOREACH


The while statement is only executing correctly for the first run through 
the foreach loop. Why?

Thanks,
loop

foreach($desc as $key=>$value) {
printf("Show %s Description <select name='show%sDesc'>", $key, $key);
echo "<option value = ''></option>";

while($row = mysql_fetch_row($show_names)) {
printf("<option value='%s'>%s</option>", $row[0], $row[1]);
}
echo "</select><br>";
}

_________________________________________________________________
MSN 8 with e-mail virus protection service: 2 months FREE* 
http://join.msn.com/?page=features/virus


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to