Re: GET/POST handleing

2002-06-22 Thread Felix Geerinckx
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]

GET/POST handleing

2002-06-22 Thread WyvernGod
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