rdnzl has asked for the wisdom of the Perl Monks concerning the following question:
how do i make that add '?user=foo' to the url?sub no_user { my $query = shift; print $query->h1( "Sorry, you must specify a username." ); print $query->startform(); print $query->popup_menu( -name=>'user', -values=>['main','foo','bar'], -default=>['main'] ); print $query->submit; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(Ovid) Re: Forms and CGIs
by Ovid (Cardinal) on Nov 13, 2000 at 23:33 UTC | |
|
Re: Forms and CGIs
by wardk (Deacon) on Nov 14, 2000 at 00:01 UTC | |
|
Re: Forms and CGIs
by Fastolfe (Vicar) on Nov 13, 2000 at 23:26 UTC | |
|
Re: Forms and CGIs
by cianoz (Friar) on Nov 14, 2000 at 22:14 UTC |