Help for this page

Select Code to Download


  1. or download this
    my @column_names = "col1" .. "col3";
    my @values  = "val1" .. "val6";
    ...
        print "<tr>", map("<td>$_->[$i]</td>", @td), "</tr>\n";
    }
    print "</table>\n";
    
  2. or download this
    my @th = "col1" .. "col3";
    my @values  = "val1" .. "val6";
    ...
            "</tr>\n";
    }
    print "</table>\n";