Help for this page

Select Code to Download


  1. or download this
            sub print_row {
                print"<TR>";
                print"<TD>$_</TD>" for @_;
                print"</TR>\n";
            }
    
  2. or download this
    print TR( td( \@_ ) );
    
  3. or download this
    my @rows;
    for ( blah blah ) {
    ...
        push( @rows, TR( td( \@_ ) );
    }
    print table( @rows );