in reply to http://www.url.com/cgi-bin/file.pl?node=how

Try this:
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
There is also a way to ensure the param you are grabbing came from the url...i believe it is:
$cgi->url_param('node'); or $cgi->param_url('node');
This is useful if you want to ensure the param you are grabbing was posted to the script