http://qs1969.pair.com?node_id=509340


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

Hi jesuashok,

"Is there a way to use TMPL_LOOP inside another TMPL_LOOP Example"
This is covered in the HTML::Template documentation, it covers inner and outer loops. I am not sure exactly what thoughts you are looking for, other than you should read the documentation and give loops names.

<TMPL_LOOP OUTER_LOOP> OUTER: <TMPL_VAR OUTER_VAR> <TMPL_LOOP INNER_LOOP> INNER: <TMPL_VAR INNER_VAR> INSIDE OUT: <TMPL_VAR OUTER_VAR> </TMPL_LOOP> </TMPL_LOOP>
Update: You could also check out HTML::Template Tutorial by jeffa from the Tutorials section of the site.

Hope this helps.

Martin