in reply to Re^2: mod_perl query string puzzle
in thread mod_perl query string puzzle

Do like this to make it happen

my $arguments = $r->args; my %currargs = map { split("=",$_) } split(/&/, $arguments);