Help for this page

Select Code to Download


  1. or download 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
    
  2. or download this
    $cgi->url_param('node');
        or
    $cgi->param_url('node');