Help for this page

Select Code to Download


  1. or download this
    # Some people want to have their cake and eat it too!
    # Uncomment this line to have the contents of the query string
    # APPENDED to the POST data.
    # $query_string .= (length($query_string) ? '&' : '') . $ENV{'QUERY_ST
    +RING'} if defined $ENV{'QUERY_STRING'};
    
  2. or download this
    <FORM method=POST action="test.cgi?$ENV{QUERY_STRING}">
    
  3. or download this
    <INPUT type="hidden" name="query_string" value="$ENV{QUERY_STRING}">
    
  4. or download this
    my $query_string = $cgi->param('query_string');