- or download this
package Module::Name;
...
# OR
return \%input; # return hash reference
}
- or download this
my $CGI = new Module::Name;
my %INPUT = $CGI->get_params();
print $INPUT{'node'};
- or download this
my $CGI = new Module::Name;
my $INPUT = $CGI->get_params();
print $INPUT->{'node'};