Help for this page

Select Code to Download


  1. or download this
    # CGI script that creates a fill-out form
    # and echoes back its values.
    ...
            start_form,
            "What's your name? ",textfield('name'),p,
            "What's the combination?", p,
    
  2. or download this
    #!/usr/local/bin/perl -w
       use CGI;                             # load CGI routines
       $q = new CGI;                        # create new CGI object
       print $q->header,                    # create the HTTP header