Help for this page

Select Code to Download


  1. or download this
    use CGI;
    
    ...
    my $query = new CGI({fungsil=>"123", foo=>"bar"});
    print $query->param('fungsil'), "\n";
    print $query->param('foo');
    
  2. or download this
    123  #the value for parameter fungsil
    bar