bu...@alejandro.ceballos.info wrote:
I am trying to read the values of all the parameters received in a CGI.
But even using a Data::Dumper::Simple module, only the names of the
params are displayed, not the name/value relation of each one.
use Data::Dumper::Simple;
use CGI;
print Dumper(\...@
at the last post, it is
print Dumper(param);
(without the @)
--
To unsubscribe, e-mail: beginners-cgi-unsubscr...@perl.org
For additional commands, e-mail: beginners-cgi-h...@perl.org
http://learn.perl.org/
I am trying to read the values of all the parameters received in a CGI.
But even using a Data::Dumper::Simple module, only the names of the
params are displayed, not the name/value relation of each one.
use Data::Dumper::Simple;
use CGI;
print Dumper(\...@param);
any idea what I am doing wro