in reply to Reaped: CGI.pm Form Retrieval

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