[htmltmpl] Data -> template (brain -> Perl)
Brought to you by:
samtregar
|
From: Robert <si...@gm...> - 2009-09-11 15:06:49
|
I am using XML::Simple to get some "simple" XML data.
$template->param( DATA => sub {
for my $list ( @{ $data->{list} } ) {
print "<p>$list->{name}[0]</p><p>$list->{description}[0]</p>";
}
}
);
That prints the data to the template at the top...it doesn't go into the
DATA var. Do I need to do the for loop outside of the $template-param?
Bob
|