Baz has asked for the wisdom of the Perl Monks concerning the following question:
my %number = ( 'One' => '1', 'Two' => '2', 'Three' => '3', ); print $h->table({-bgcolor=>"#99FF00"}, $h->Tr({-align=>'center', -valign=>'top'}, $h->td({-width=>"34%", -height=>"14", -class=>"e", -align=>"center"} +,1), $h->td({-width=>"33%", -class=>"d", -align=>"center"},1), $h->td({-width=>"33%", -class=>"d", -align=>"center"},1), ), $h->Tr({-align=>'center', -valign=>'top'}, $h->td({-width=>"34%", -height=>"14", -class=>"e", -align=>"center"} +,2), $h->td({-width=>"33%", -class=>"d", -align=>"center"},2), $h->td({-width=>"33%", -class=>"d", -align=>"center"},2), ), );
| 1 | 1 | 1 |
| 2 | 2 | 2 |
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Filling cgi.pm table with hash values
by cLive ;-) (Prior) on Mar 23, 2004 at 19:41 UTC | |
by Baz (Friar) on Mar 23, 2004 at 21:26 UTC |