in reply to http://www.url.com/cgi-bin/file.pl?node=how
There is also a way to ensure the param you are grabbing came from the url...i believe it is:use CGI; use CGI::Validate qw(:standard); my $Page = $cgi->param('node'); #$Page will now be assigned the value of the parameter node that was p +assed in the url
This is useful if you want to ensure the param you are grabbing was posted to the script$cgi->url_param('node'); or $cgi->param_url('node');
|
|---|