Cannot retrieve empty keys from request using Apache2::Request.param

2012-01-03 Thread Tommaso Torti
Hi all, i'm using mod_perl in order to retrieve all keys from a POST request with: my $request = Apache2::Request->new($r); my $data = $request->param(); When i receive something like key1=value1&key2=&key3=value3 $data contains all 3 keys but with key1=value1&key2&key3=value3 $data contains on

Re: Cannot retrieve empty keys from request using Apache2::Request.param

2012-01-03 Thread Tommaso Torti
Hi Andrè the input i'm receiving is not directly invoked from an html form, but it could be built from java code or php or other sources i don't even know. So i can't use javascript to fix the problem .. Thank you,

Re: Cannot retrieve empty keys from request using Apache2::Request.param

2012-01-04 Thread Tommaso Torti
Thank you André for the clear explanation!