On Sat, Oct 30, 2004 at 09:52:21AM -0700, Roderick A. Anderson wrote: > This will take some doing. Currently I'm pulling the fileds/values in > from the form and placing them in another hash that is passed around > script for adding to and modifying.
The CGI module is nice for generating the HTML, but I'll add my vote for HTML::FillInForm for making clean templates. If you add a param() method for your data then you don't need that extra hash. On the first request you pass your data object (that has the param method) to HTML::FillInForm, otherwise you pass it your CGI object. -- Bill Moseley [EMAIL PROTECTED] _______________________________________________ templates mailing list [EMAIL PROTECTED] http://lists.template-toolkit.org/mailman/listinfo/templates
