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

NAME

HTML::STable - Perl extension for HTML Tables.

SYNOPSIS

   use HTML::STable; 
   use strict;

   my $table = HTML::STable->new;
   $table->insert(0,0,"Larry");
   $table->insert(0,1,"Wall");
   $table->insert(1,0,"Randal");
   $table->insert(1,1,"Schwartz");
   $table->insert(2,["Tom","Christiansen"]);
   $table->insert(3,0,["Tim","Bunce"]);
   display $table;

DESCRIPTION

Stub documentation for HTML::STable was created by h2xs. HTML::STable (Simple Table) has many futures to make HTML Table creation and use simple. Since it has so many futures, I wanted to show all the futures of this module by using simple programs. This programs also help me to find bugs. After a change in the module I run these programs for possible bugs. You can find these programs at

http://users.rcn.com/seyhan

If you have any question, or you want to have simple program to show how the particular future of HTML::STable is used, send me an e-mail at

seyhan@rcn.com

so that I can add a test program for you. =head1 AUTHOR

Seyhan Ersoy, seyhan@rcn.com Documentation of HTML::Stable is located at. http://users.rcn.com/seyhan

COPYRIGHT

You may use and distribute HTML::STable module under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file.

ACKNOWLEDGEMENTS

I would like to acknowledge the valuable contributions of the many people I have worked with on the HTML::STable project, especially to Olcay Boz. I also thank my wife Zeynep Ersoy for her patience and support.

SUPPORT / WARRANTY

The HTML::STable is free software. IT COMES WITHOUT WARRANTY OF ANY KIND.

SEE ALSO

perl(1).