gards,
David
- Original Message -
From: "Ovid" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 22, 2002 2:33 PM
Subject: Re: GET/POST handleing
--- [EMAIL PROTECTED] wrote:
> What would be better then useing the following? I'm lookig
--- [EMAIL PROTECTED] wrote:
> What would be better then useing the following? I'm lookign for something
> better and more secure. If there is such a thing
>
> sub SplitInput{
>
> $meth = $ENV{REQUEST_METHOD};
> if ($meth eq "GET") {
> $formInfo = $ENV{QUERY_STRING};
> } elsif ($meth
on Sat, 22 Jun 2002 19:21:12 GMT, wrote:
> What would be better then useing the following? I'm lookign for
> something better and more secure. If there is such a thing
CGI.pm
--
felix
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
What would be better then useing the following? I'm lookign for something
better and more secure. If there is such a thing
sub SplitInput{
$meth = $ENV{REQUEST_METHOD};
if ($meth eq "GET") {
$formInfo = $ENV{QUERY_STRING};
} elsif ($meth eq "POST") {
read(STDIN, $formInfo, $ENV{C