http://www.perlmonks.org?node_id=923520


in reply to How to I build a Dynamic Form from a Database output

I have recently had success using HTML::FormFu (HTML::FormFu::Manual::Cookbook) to build up forms programmatically. The documentation focuses on YAML file examples, but you can build everything up using the populate and elements methods. Just turn each row into a hash describing the field and then pass them all in to the FormFu object. No ugly HTML munging!

Good Day,
    Dean