|
Posted by Mara Guida on 12/10/05 18:03
Vic Spainhower wrote:
> I changed the query so that it would only pick up records starting with the
> 135th record. With this set of records it is ok the button works. So I
> believe this indicates that it is not a data problem.
I'm still not convinced.
Try this:
Instead of putting the value from the database in the select put a
count of options and try all the records (or just the subset from
record 1 to record 135)
// ...
$option_count = 0;
while ($row = mysql_fetch_row()) {
### echo '<option>', $row[2], '</option>';
echo '<option>', ++$option_count, '</option>';
}
// ...
Navigation:
[Reply to this message]
|