in reply to Re: Re: Using CGI.pm
in thread Using CGI.pm

Well, to be pedantic, no the above code wouldn't, as it only specifies the POST data. If you wanted the query string you would just call it with 'GET' as an arguement: my %get = $c->parse_form_data('GET');. If you wanted both types of paramaters in one hash then you would need to merge them some how. How you merge depends on how you want to treat duplicates and such.

Replies are listed 'Best First'.
Re: Re: Re: Re: Using CGI.pm
by Deanimal (Acolyte) on Nov 19, 2003 at 13:36 UTC

    Cool. That gives me enough to work with and figure it out. Thanks for the help.