Help for this page

Select Code to Download


  1. or download this
        read STDIN, $query, $ENV{CONTENT_LENGTH};     # <--
    
  2. or download this
        $query=<STDIN>;     # <--
    
  3. or download this
    #! perl
    
    ...
    }
    
    # END
    
  4. or download this
    #! perl
    
    ...
    }
    
    # END
    
  5. or download this
        if ($req_method eq 'POST') {$query=<STDIN>;}
    
  6. or download this
        elsif ($req_method eq 'GET') {$query = $ENV{QUERY_STRING};}