Help for this page

Select Code to Download


  1. or download this
      use CGI;
      # ...
      print FH CGI->table(@rows);
    
  2. or download this
      print FH CGI->start_table;
      print FH @rows;
      print FH CGI->end_table;