avik has asked for the wisdom of the Perl Monks concerning the following question:
my $table = new HTML::Table (
-border => 1,
-rules => 'both',
-spacing => 0,
-padding => 3,
-align => 'CENTER',
-style => 'text-align: right;',
-width => '100%',
-head => $sth->{NAME},
-data => $data,
);
That -head accepts an array, which works well if only one row of headers is needed. But when I must use multiple rows, I can't figure out how to program it. I read the docs -- have no clue.
Thanks in advance.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTML::Table multi-row head
by davis (Vicar) on Jan 06, 2005 at 14:00 UTC | |
by simonm (Vicar) on Jan 06, 2005 at 17:15 UTC | |
by avik (Novice) on Jan 07, 2005 at 00:40 UTC | |
by simonm (Vicar) on Jan 10, 2005 at 19:12 UTC | |
by davis (Vicar) on Jan 06, 2005 at 17:23 UTC |