Re: GET/POST handleing

2002-06-24 Thread perl-dvd
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

Re: GET/POST handleing

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

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