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