Help for this page

Select Code to Download


  1. or download this
    use CGI ':html'; # functional interface
    
    ...
    print Tr(td(@row));
    
    # prints <tr><td>one two three four five</td></tr>
    
  2. or download this
    use CGI ':html'; # functional interface
    
    ...
    print Tr(td(\@row));
    
    # prints <tr><td>one</td> <td>two</td> <td>three</td> <td>four</td> <t
    +d>five</td></tr>