M
Mark
I want to store my request variables as a hash and have the code:
use CGI qw
standard);
use CGI qw
cgi-lib);
use CGI::Carp qw(fatalsToBrowser);
use strict;
my $q = new CGI;
my $params = $q->Vars;
but the server is giving me an error message:
"Undefined subroutine CGI::Vars"
but I'm not sure why.
Thanks
Mark
use CGI qw
use CGI qw
use CGI::Carp qw(fatalsToBrowser);
use strict;
my $q = new CGI;
my $params = $q->Vars;
but the server is giving me an error message:
"Undefined subroutine CGI::Vars"
but I'm not sure why.
Thanks
Mark