Help for this page

Select Code to Download


  1. or download this
    ...
    HTTP_CONTENT_TYPE = application/x-www-form-urlencoded
    ...
    
  2. or download this
    use CGI;
    
    my $q = CGI->new;
    ...
    my @values  = $q->multi_param('form_field');
    
    my $value2  = $q->param('param2_name');