Help for this page

Select Code to Download


  1. or download this
    print $query->table(
      $query->Tr(
        $query->td({width=>"15%"}, "1"),
        $query->td(                "2"),
      ),
    );
    
  2. or download this
    my @rows;
    foreach my $no (qw( one two three )) {
      push @rows, $query->td( $no );
    }
    
    print $query->table( $query->Tr( \@rows ) );