> From: "James Brennan" <[EMAIL PROTECTED]> > Sent: Tuesday, January 07, 2003 8: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>"; > } You didn't really explain the problem well, but I think this is what you're looking for http://www.php.net/manual/en/function.mysql-data-seek.php Reset the pointer before the while loop and the names should list of all of the select boxes. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php