Help for this page

Select Code to Download


  1. or download this
       perldoc CGI
    
  2. or download this
        use CGI;         # load CGI routines
        $q = new CGI;    # create new CGI object
        @values = $q->param('foo');
    
  3. or download this
        use CGI;         # load CGI routines
        $q = new CGI;    # create new CGI object
        @select_values = $q->param('sel');