Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: A question regarding HTML::Template, tables, and loops

by samtregar (Abbot)
on Sep 02, 2002 at 02:28 UTC ( [id://194505]=note: print w/replies, xml ) Need Help??


in reply to A question regarding HTML::Template, tables, and loops

There are any number of ways to solve this problem with HTML::Template, but here's how I'd do it. Here's the script:

use HTML::Template; my $template = HTML::Template->new(filename => "test.tmpl"); my @data = (1 .. 30); my $items_per_row = 5; my $x = 0; my @loop; foreach (@data) { my %row = ( data => $_ ); $row{break} = 1 unless $x % $items_per_row or $x == 0; push @loop, \%row; $x++; } $template->param(loop => \@loop); print $template->output();

And the corresponding template:

<table> <tr> <tmpl_loop loop> <tmpl_if break></tr><tr></tmpl_if> <td><tmpl_var data></td> </tmpl_loop> </tr> </table>

Does that help?

-sam

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://194505]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-23 18:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found