Re: [htmltmpl] Usage question

2006-03-05 Thread Sam Tregar
On Sun, 5 Mar 2006, Matias Alejo Garcia wrote: Is there any way to, once the $template is filled, to dump the variables to a file? Sure. The full parameter set is available via param(): my %data = map { ($_, $template->param($_) } $template->param(); You can dump that hash to a file with

Re: [htmltmpl] Usage question

2006-03-05 Thread Mark A. Fuller
From: Matias Alejo Garcia <[EMAIL PROTECTED]> > >Is there any way to, once the $template is filled, to dump the variables to >a file? I may not understand this correctly. But, you can print your $template->output() to a file (instead of STDOUT). Give essentially static HTML to the designer. She'

[htmltmpl] Usage question

2006-03-05 Thread Matias Alejo Garcia
hello all! I am new in the list, I have been using HTML::Template for 3 month! great work!!I would like to ask for your suggestion for the following problem:We have a complex web application using HTML::Template. This application uses MySQL and a lot of modules, and is not easy to install. We need