[ Create a new account ]
HTML::FillInForm rocks my world today. Saving me a LOT of addtional coding with HTML::Template.
Thanks grantm!
<TMPL_LOOP loop_foo> <input type="radio" name="order_<TMPL_VAR id>" value="1"> <input type="radio" name="order_<TMPL_VAR id>" value="0"> </LOOP>
I'm passing the template data to the FiF method as well, so my data structure looks like this in order for FiF to correctly set t
Get More Comments
Reply
one potential gotcha (Score:1)
<TMPL_LOOP loop_foo>
<input type="radio" name="order_<TMPL_VAR id>" value="1">
<input type="radio" name="order_<TMPL_VAR id>" value="0">
</LOOP>
I'm passing the template data to the FiF method as well, so my data structure looks like this in order for FiF to correctly set t
"Perl users are the Greatful Dead fans of computer science." --slashdot comment
Re:one potential gotcha (Score:1)
Thanks