in reply to Re: Ignore case of query string parameter
in thread Ignore case of query string parameter

same untested code but written into one line :)
my %params = map {(lc($_)=>$query->param($_))} $query->param;
(personally I tend to write similar code this way)

Best wishes
Weasel