in reply to fork problem
I would most likely have written that as:#getting the parameters from the cgi object $type = $cgi->param('type'); $mudpit = $cgi->param('mudpit'); $url = $cgi->param('url'); $boldRed = $cgi->param('bold_red'); $maxHits = $cgi->param('max_hits');
You may also want to check out the Vars method if you need the entire parameter list fetched.my %data; $data{$_} = $cgi->param($_) for qw(type mudpit url bold_red max_hits);
Cheers - L~R
|
|---|