in reply to Re: Re: Getting arguments such as ?page=20 for web scriptsin thread Getting arguments such as ?page=20 for web scripts
my %parameters; my @inputs = $q->param; foreach $item (@inputs){ $parameters{$item} = $q->param($item); } [download]
C-.