in reply to Re^2: mod_perl query string puzzlein thread mod_perl query string puzzle
Do like this to make it happen
my $arguments = $r->args; my %currargs = map { split("=",$_) } split(/&/, $arguments); [download]