
December 29th, 1999, 06:07 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
Well, I don't know why it's not working, but I do see a problem. each() and next() both advance the array pointer. If you only have two elements that would be why you have a problem.
Instead of a do..while loop, just use a while.
while (list($value,$option)=each($employee_select)
{
print "<option value="$value">$option"<option>n";
}
|