in reply to Drop Down Selection #2
You are already in a loop for $u... the while is a loop, what you should do is create an array, and push values of $u on it as you get them, so you would do
in your loop, that adds values of $u one by one to the array, appending them to the end. Then your call would look likepush @users, $u;
at least, I think that is what you are asking for?print $query->popup_menu(-name=>'userid', -values=>\@users);## $u needs loop to pu +ll all company entries from $db
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Drop Down Selection #2
by koacamper (Acolyte) on May 09, 2001 at 01:18 UTC | |
by suaveant (Parson) on May 09, 2001 at 06:25 UTC | |
by tilly (Archbishop) on May 09, 2001 at 11:39 UTC | |
by koacamper (Acolyte) on May 09, 2001 at 06:35 UTC |