This node was taken out by the NodeReaper on Dec 21, 2023 at 20:50 UTC

You may view the original node and the consideration vote tally.

Replies are listed 'Best First'.
•Re: CGI.pm Form Retrieval
by merlyn (Sage) on Jun 12, 2002 at 21:46 UTC
    Much easier on the fingers, and doesn't scare you into using OO if you're not ready:
    use CGI qw(param); my $value1 = param('field1'); my $value2 = param('field2'); my @multiple_selection_values3 = param('field3');

    -- Randal L. Schwartz, Perl hacker