Help for this page
#getting the parameters from the cgi object $type = $cgi->param('type'); ... $url = $cgi->param('url'); $boldRed = $cgi->param('bold_red'); $maxHits = $cgi->param('max_hits');
my %data; $data{$_} = $cgi->param($_) for qw(type mudpit url bold_red max_hits);