Help for this page

Select Code to Download


  1. or download this
    use CGI;
    my $query = CGI->new;
    my $id = $query->param('id');
    
  2. or download this
    use CGI qw/:standard/;
    my $id = param('id');
    
  3. or download this
    http://www.perlmonks.org/cgi-bin/test.cgi?id=1