Help for this page

Select Code to Download


  1. or download this
    #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');
    
  2. or download this
    my %data;
    $data{$_} = $cgi->param($_) for qw(type mudpit url bold_red max_hits);