Help for this page

Select Code to Download


  1. or download this
    my $q = new CGI;
    
    ...
    for ( $q->param() ) {
      $conf{$_} = $q->param($_);
    }
    
  2. or download this
    $conf{'var_name'} = $q->param('var_name');