in reply to More efficient reading of forms in CGI
Now it a field called "name" was in your form and it contains the value 'bob' you could do:my %pairs = $cgi->Vars();
my $name = $pairs{name}; now $name will contain 'bob'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: More efficient reading of forms in CGI
by bassplayer (Monsignor) on Sep 30, 2003 at 14:41 UTC |