RE: POST method with perl module

2004-06-04 Thread Bob Showalter
Tobias Fink wrote: > Good morning, > > im trying to set up a tools module for my modperl environment. > My function get_vars should get all passed variables with the > following snipplet: > > if($ENV{'REQUEST_METHOD'} eq "GET"){ > $my_data = $ENV{'QUERY_STRING'}; > } > else { > $data_lengt

Re: POST method with perl module

2004-06-04 Thread Wiggins d Anconia
> Good morning, > > im trying to set up a tools module for my modperl environment. > My function get_vars should get all passed variables with the following > snipplet: > > if($ENV{'REQUEST_METHOD'} eq "GET"){ > $my_data = $ENV{'QUERY_STRING'}; > } > else { > $data_length = $ENV{'CONTENT_L

POST method with perl module

2004-06-04 Thread Tobias Fink
Good morning, im trying to set up a tools module for my modperl environment. My function get_vars should get all passed variables with the following snipplet: if($ENV{'REQUEST_METHOD'} eq "GET"){ $my_data = $ENV{'QUERY_STRING'}; } else { $data_length = $ENV{'CONTENT_LENGTH'}; $bytes_read