in reply to Parsing "&" from header.
Send your form data to this using a browser, it will print out a representation of all the data sent to the script %input, all the environment data %ENV and the CGI::Simple object.use CGI::Simple; use Data::Dumper; my $q = CGI::Simple->new(); my %input = $q->Vars; print $q->header('text/plain'); print Dumper(\%input, \%ENV, \$q);
|
|---|