Help for this page

Select Code to Download


  1. or download this
    
    # Generate container table
    my $t = new HTML::ElementTable ( maxrow => 12, maxcol => 3 );
    
  2. or download this
    # Populate container table
    for my $calnum ( 0 .. $#cals ) {
    my $row = int(my $calnum/4);
       $t->cell( 0, $calnum )->push_content( $cals[$calnum] );
    }