in reply to Re: CGI POST vs. GET problem
in thread CGI POST vs. GET problem

Looking in the version of CGI.pm that I have on my server, it shows the following:
sub parse_params { my($self,$tosplit) = @_; my(@pairs) = split(/[&;]/,$tosplit); my($param,$value); etc.
The use of the & or ; in the split should mean that CGI will work for browsers using & to separate pairs as well as working for browsers using ; to separate pairs.

Claude

Replies are listed 'Best First'.
Re: Re: Re: CGI POST vs. GET problem
by shotgunefx (Parson) on Jun 06, 2001 at 13:18 UTC
    I'd look to make sure you are getting passed the QUERY_STRING.

    Then I would look at the server config to make sure GET is enabled.

    -Lee

    "To be civilized is to deny one's nature."