in reply to Re: How do I get at the parameters in my CGI program?
in thread How do I get at the parameters in my CGI program?
But I typically useuse CGI qw(param); ... my $source = param('source'); my @destination_states = param('dest'); # multi-select
since I'm also using the HTML generation shortcuts.use CGI qw(:all);
-- Randal L. Schwartz, Perl hacker
|
|---|