Help for this page

Select Code to Download


  1. or download this
    % perl example.cgi 'Submit=Go'
  2. or download this
    my $submit = $cgi->param('Submit');
    if (defined($submit) && $submit eq 'Go')
    {
         do_results($cgi);
    }