in reply to Re^2: making a difference between POST parameters and URL parameters
in thread making a difference between POST parameters and URL parameters
Hmmm ... I wonder if Doing both is more about CGI possibly processing *both* URL params and STDIN params for a POST? One of the best comments in cpan:
... I like cake.if ($meth eq 'POST') { $self->read_from_client(\$query_string,$content_length,0) if $content_length > 0; # 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_ +STRING'} if defined $ENV{'QUERY_STRING'}; last METHOD; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: making a difference between POST parameters and URL parameters
by roboticus (Chancellor) on Feb 14, 2008 at 22:03 UTC | |
|
Re^4: making a difference between POST parameters and URL parameters
by gfk (Novice) on Jan 28, 2010 at 14:46 UTC | |
by afoken (Chancellor) on Jan 28, 2010 at 19:24 UTC |