Hello,
I need to read the, for lack of a better term, raw post data sent to a
CGI script. I have the following code:
use CGI;
my $Cgi = CGI->new();
my $PostData = $Cgi->query_string;
Is this the correct/best way?
The reason I ask is that, for one user calling my script, the $PostData
contents have the string ';keywords=' in place of any space character.
For example, if the user was calling my script and passing 'hello
world', $PostData would contain 'hello;keywords=world'.
Thanks,
Shawn
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>