in reply to displaying all data received on a web script
Since you are using CGI-Lite anyway, why not use the handy print_data method?
use strict; use CGI::Lite; my $cgi = CGI::Lite->new; print "Content-type: text/plain\n\n"; $cgi->parse_form_data; $cgi->print_data;
|
|---|