in reply to Getting hash of CGI variables
use CGI::Lite; my $c = CGI::Lite->new(); my %form_data = $c->parse_form_data(); #or pass it GET or POST, respec +tively print keys %form_data; print "\$form_data{ $_ } = $form_data{$_}\n" for keys %form_data;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Getting hash of CGI variables
by Lori713 (Pilgrim) on Jan 23, 2004 at 13:20 UTC | |
by BUU (Prior) on Jan 23, 2004 at 23:16 UTC |