|
HTML::STable - Perl extension for HTML Tables. |
HTML::STable - Perl extension for HTML Tables.
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;
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
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
so that I can add a test program for you.
Seyhan Ersoy, seyhan@rcn.com Documentation of HTML::Stable is located at. http://users.rcn.com/seyhan
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.
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.
The HTML::STable is free software. IT COMES WITHOUT WARRANTY OF ANY KIND.
perl(1).
|
HTML::STable - Perl extension for HTML Tables. |