in reply to Re: CGI POST vs. GET problem
in thread CGI POST vs. GET problem
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.sub parse_params { my($self,$tosplit) = @_; my(@pairs) = split(/[&;]/,$tosplit); my($param,$value); etc.
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 |