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
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,
Thank you André for the clear explanation!