Help for this page

Select Code to Download


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