Help for this page

Select Code to Download


  1. or download this
    machine/cgi-bin/abc.cgi?x=5&y=6
    
  2. or download this
    use CGI qw(:standard);
    use CGI::Carp qw(warningsToBrowser fatalsToBrowser);
    ...
    print submit;
    print end_form;
    print end_html;
    
  3. or download this
    print start_form(-method=>'GET',-action=>"abc.cgi?x=7&y=8");