in reply to HTML::Table multi-row head
Note that $array_ref is a scalar. To use it in your context:my $array_ref = ["foo", "bar", "baz"];
my $table = new HTML::Table ( -border => 1, -rules => 'both', -spacing => 0, -padding => 3, -align => 'CENTER', -style => 'text-align: right;', -width => '100%', -head => [$sth->{NAME}, "foo", "bar", "baz", "whatever"], -data => $data, );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: HTML::Table multi-row head
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 |