Parsing query strings
$qq will contain an associative array of the query string parameters.
use strict;
use URI::Query;
my $qs = query_string();
my $qq = URI::Query->new($qs);
my %qq = $qq->hash;
print $qq{'action'};
[Click to add or edit comments])
Please prepend comments below including a date