Help for this page

Select Code to Download


  1. or download this
    use CGI;
    $query = new CGI;
    ...
                      -value=>'tabname';
    print $query->submit('doWhat','Print Fields');
    print $query->end_form;
    
  2. or download this
    use CGI;
    $query = new CGI;
    $SFields = join(", ",$query->param('FieldNames'));
    $STab    = $query->param('Tbl1');