in reply to Help with nested loop in HTML::Template
The output will be same as the previous post.#!/usr/bin/perl use strict; use warnings; use Template::Alloy qw(HTML::Template); use HTML::Template; my $data = [ [qw{one two three}], [qw{four five six}], [qw{seven eight nine}], ]; my $tmpl = do{local $/;<DATA>}; my $t = HTML::Template->new(scalarref => \$tmpl) or die qq{tmpl obj fa +iled\n}; $t->param({data => $data}); print $t->output; __DATA__ <TMPL_FOR row IN data> --------------------------- <TMPL_FOR i IN row> <TMPL_VAR i> </TMPL_FOR> </TMPL_FOR>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Help with nested loop in HTML::Template
by mhearse (Chaplain) on Dec 23, 2007 at 02:07 UTC |