Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: TMPL_LOOP inside another TMPL_LOOP with HTML::Template

by kulls (Hermit)
on Nov 17, 2005 at 09:34 UTC ( [id://509342]=note: print w/replies, xml ) Need Help??


in reply to TMPL_LOOP inside another TMPL_LOOP with HTML::Template

Hi,
here my sample..
My template like this
<select> <tmpl_loop loop_one> <option name='<tmpl_var name>'> <tmpl_var value> </option> <tmpl_if loop_two> <tmpl_loop loop_two> <option name='<tmpl_var name_one>'> <tmpl_var value_one> </option> </tmpl_loop> </tmpl_if> </tmpl_loop> </select>
My prg is like this
my (@loop_two,@loop_one); for(@arr_name) { push @loop_two, { name_one => 1, value_one => 2 }; } for(@arr_one) { push @loop_one, { name => 1, value => 2, loop_two => \@loop_two }; } $html->param(loop_one => \@loop_one); return $html->output(); where $html is HTML::Template object.

-kulls

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-25 15:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found