in reply to (jeffa) Re: I know this is very easy
in thread Printing variables from CGI form (was: I know this is very easy)

...and for Old and New alike, the functional interface to CGI.pm is much cleaner and easier to understand. The following is functionally (:-D) identical to jeffa's code:
use strict; use CGI qw(:standard); print header, start_html, pre; foreach my $name (param) { print "$name = ", param($name), "\n"; }
Less typing means a few more months before Carpal Tunnel sets in.

Gary Blackburn
Trained Killer