r.joseph has asked for the wisdom of the Perl Monks concerning the following question:
thus, passing a hash reference to the process() function, which is exactly what it calls for. Yet, whenever I do this, it doesn't work, but the next code DOES:%vars = { name => value, n => v, ...}; $template->process($file,\%vars);
$vars = { name => value, n => v, ...}; $template->process($file, $vars);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Teplate Toolkit Question
by extremely (Priest) on Dec 29, 2000 at 14:29 UTC | |
|
Re: Template Toolkit Question
by davorg (Chancellor) on Dec 29, 2000 at 15:03 UTC | |
|
Re: Teplate Toolkit Question
by $code or die (Deacon) on Dec 29, 2000 at 16:20 UTC |