HTML::EasyTable

HTML::EasyTable is a Perl module for easy printing of HTML Tables.
Download

HTML::EasyTable Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Angel N. Kolev
  • Publisher web site:
  • http://search.cpan.org/~anio/HTML-EasyTable-0.04/lib/HTML/EasyTable.pm

HTML::EasyTable Tags


HTML::EasyTable Description

HTML::EasyTable is a Perl module for easy printing of HTML Tables. HTML::EasyTable is a Perl module for easy printing of HTML Tables.SYNOPSIS use HTML::EasyTable; my %options = ( -mass_param= >{ -style_3= >'font-weight:600;', # apply to column 3 -title_4= >'Click here!' # apply to column 4 }, -style= >'width:800;', # -id= >'table1', # -border= >1, # Any standart -bordercolor= >'#000099', # < table > options -cellspacing= >'0' # ); # Construct $table object with %options arguments: my $table = HTML::EasyTable- >new(%options); # print < table style="width:800;" id="table1" .... without mass_param : print $table- >startTable; # print < tr > and table cells with # options below plus "mass_param": print $table- >tr_TD( {-bgcolor_3= >'#339933', # Cell 3 bgcolor -title_3= >'Click here', # title of Cell 3 align= >'center', # < tr align="center" style= >'font-weight:600;' # < tr style="font-weight:600;" }, 'Cell 1',$cell_2,'Cell 3',@cell_4 # content of < td > cells ); print $table- >tr_TH(....); # content of < th > cells print $table- >endTable; # this just print < /table > Requirements: · Perl


HTML::EasyTable Related Software