The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

HTML::Table - produces HTML tables

SYNOPSIS

  use HTML::Table;

  $table1 = new HTML::Table($rows, $cols);
    or
  $table1 = new HTML::Table(-rows=>26,
                            -cols=>2,
                            -border=>1,
                            -bgcolor=>"blue",
                            -width=>"50\%",
                            -spacing=>1,
                            -padding=>1);

  $table1->setCell($cellrow, $cellcol, 'This is Cell 1');
  $table1->setCellBGColor('blue');
  $table1->setCellColSpan(1, 1, 2);
  $table1->setRowHead(1);
  $table1->setColHead(1);

  $table1->print;

  $table2 = new HTML::Table;
  $table2->addRow(@cell_values);
  $table2->addCol(@cell_values2);

  $table1->setCell(1,1, "$table2->getTable");
  $table1->print;

REQUIRES

Perl5.002

EXPORTS

Nothing

DESCRIPTION

HTML::Table is used to generate HTML tables for CGI scripts. By using the methods provided fairly complex tables can be created, manipulated, then printed from Perl scripts. The module also greatly simplifies creating tables within tables from Perl. It is possible to create an entire table using the methods provided and never use an HTML tag.

HTML::Table also allows for creating dynamically sized tables via its addRow and addCol methods. These methods automatically resize the table if passed more cell values than will fit in the current table grid.

Methods are provided for nearly all valid table, row, and cell tags specified for HTML 3.0.

A Japanese translation of the documentation is available at:

        http://member.nifty.ne.jp/hippo2000/perltips/html/table.htm

METHODS

  [] indicate optional parameters. default value will
     be used if no value is specified

Creation

new HTML::Table([num_rows, num_cols])

Creates a new HTML table object. If rows and columns are specified, the table will be initialized to that size. Row and Column numbers start at 1,1. 0,0 is considered an empty table.

new HTML::Table([-rows=>num_rows, -cols=>num_cols, -border=>border_width, -bgcolor=>back_colour, -width=>table_width, -spacing=>cell_spacing, -padding=>cell_padding])

Creates a new HTML table object. If rows and columns are specified, the table will be initialized to that size. Row and Column numbers start at 1,1. 0,0 is considered and empty table.

Table Level Methods

setBorder([pixels])

Sets the table Border Width

setWidth([pixels|percentofscreen])

Sets the table width Remember to escape percent symbol if used

setCellSpacing([pixels])
setCellPadding([pixels])
setCaption("CaptionText" [, TOP|BOTTOM])
setBGColor([colorname|colortriplet])
autoGrow([1|true|on|anything|0|false|off|no|disable])

Switches on (default) or off automatic growing of the table if row or column values passed to setCell exceed current table size.

getTableRows

Returns the number of rows in the table.

getTableCols

Returns the number of columns in the table.

Cell Level Methods

setCell(row_num, col_num, "content")

Sets the content of a table cell. This could be any string, even another table object via the getTable method. If the row and/or column numbers are outside the existing table boundaries extra rows and/or columns are created automatically.

setCellAlign(row_num, col_num, [CENTER|RIGHT|LEFT])

Sets the horizontal alignment for the cell.

setCellVAlign(row_num, col_num, [CENTER|TOP|BOTTOM])

Sets the vertical alignment for the cell.

setCellWidth(row_num, col_num, [pixels|percentoftable])

Sets the width of the cell.

setCellHeight(row_num, col_num, [pixels])

Sets the height of the cell.

setCellHead(row_num, col_num)

Sets cell to be of type head (Ie <TH></TH>)

setCellNoWrap(row_num, col_num, [0|1])

Sets the NoWrap attribute of the cell.

setCellBGColor(row_num, col_num, [colorname|colortriplet])

Sets the background colour for the cell

setCellRowSpan(row_num, col_num, num_cells)

Causes the cell to overlap a number of cells below it. If the overlap number is greater than number of cells below the cell, a false value will be returned.

setCellColSpan(row_num, col_num, num_cells)

Causes the cell to overlap a number of cells to the right. If the overlap number is greater than number of cells to the right of the cell, a false value will be returned.

setCellSpan(upleft_row_num, up_left_col_num, lowright_row_num, lowrigt_col_num)

Joins the block of cells with the corners specified. If the values specified are greater than the number of rows or columns, a false value will be returned.

setCellFormat(row_num, col_num, start_string, end_string)

Start_string should be a string of valid HTML, which is output before the cell contents, end_string is valid HTML that is output after the cell contents. This enables formatting to be applied to the cell contents.

        $table->setCellFormat(1, 2, '<B>', '</B>');
getCell(row_num, col_num)

Returns the contents of the specified cell as a string.

Column Level Methods

addCol("cell 1 content" [, "cell 2 content", ...])

Adds a column to the right end of the table. Assumes if you pass more values than there are rows that you want to increase the number of rows.

setColAlign(col_num, [CENTER|RIGHT|LEFT])

Applies setCellAlign over the entire column.

setColVAlign(col_num, [CENTER|TOP|BOTTOM])

Applies setCellVAlign over the entire column.

setColWidth(col_num, [pixels|percentoftable])

Applies setCellWidth over the entire column.

setColHeight(col_num, [pixels])

Applies setCellHeight over the entire column.

setColHead(col_num)

Applies setCellHead over the entire column.

setColNoWrap(col_num, [0|1])

Applies setCellNoWrap over the entire column.

setColBGColor(row_num, [colorname|colortriplet])

Applies setCellBGColor over the entire column.

setColFormat(col_num, start_string, end_sting)

Applies setCellFormat over the entire column.

Row Level Methods

addRow("cell 1 content" [, "cell 2 content", ...])

Adds a row to the bottom of the table. Assumes if you pass more values than there are columns that you want to increase the number of columns.

setRowAlign(row_num, [CENTER|RIGHT|LEFT])

Applies setCellAlign over the entire row.

setRowVAlign(row_num, [CENTER|TOP|BOTTOM])

Applies setCellVAlign over the entire row.

setRowWidth(row_num, [pixels|percentoftable])

Applies setCellWidth over the entire row.

setRowHeight(row_num, [pixels])

Applies setCellHeight over the entire row.

setRowHead(row_num)

Applies setCellHead over the entire row.

setRowNoWrap(col_num, [0|1])

Applies setCellNoWrap over the entire row.

setRowBGColor(row_num, [colorname|colortriplet])

Applies setCellBGColor over the entire row.

setRowFormat(row_num, start_string, end_string)

Applies setCellFormat over the entire row.

Output Methods

getTable

Returns a string containing the HTML representation of the table.

The same effect can also be achieved by using the object reference in a string scalar context.

For example...

        This code snippet:

                $table = new HTML::Table(2, 2);
                print '<P>Start</P>';
                print $table->getTable;
                print '<P>End</P>';

        would produce the same output as:

                $table = new HTML::Table(2, 2);
                print "<P>Start</P>$table<P>End</P>";
print

Prints HTML representation of the table to STDOUT

CLASS VARIABLES

HISTORY

This module was originally created in 1997 by Stacy Lacy and whose last version was uploaded to CPAN in 1998. The module was adopted in July 2000 by Anthony Peacock in order to distribute a revised version. This adoption took place without the explicit consent of Stacy Lacy as it proved impossible to contact them at the time. Although explicit consent was not obtained at the time, there was some evidence that Stacy Lacy was looking for somebody to adopt the module in 1998.

AUTHOR

Anthony Peacock, a.peacock@chime.ucl.ac.uk Stacy Lacy (Original author)

CONTRIBUTIONS

Jay Flaherty, fty@mediapulse.com For ROW, COL & CELL HEAD methods. Modified the new method to allow hash of values.

John Stumbles, john@uk.stumbles.org For autogrow behaviour of setCell, and allowing alignment specifications to be case insensitive

COPYRIGHT

Copyright (c) 1998-2001 Anthony Peacock, CHIME. Copyright (c) 1997 Stacy Lacy

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

perl(1), CGI(3)