Help for this page

Select Code to Download


  1. or download this
    # html-table style
    print "<table>\n";
    ...
    }
    print "</table>\n";
    
  2. or download this
    use CGI qw(:standard *table);
    use CGI::Pretty; # For pretty-printed HTML
    ...
    print start_table;
    print Tr(td($_)) foreach @$rows;
    print end_table;