kulls has asked for the wisdom of the Perl Monks concerning the following question:
test.tmpl contains <tmpl_var NEW_/A/B/C> . I guess the problem with the special characters in the "tmpl_var".Please suggest me How we can proceed ? . -kullsmy %hash=( 'NEW_A/B/C' => '3' ); my $t=HTML::Template->new(filename=> 'test.tmpl'); $t->param('NEW_A/B/C' => $hash{'NEW_A/B/C'}); print $t->output();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to Set the 'tmpl_var' value in HTML::Template
by bobf (Monsignor) on Dec 29, 2007 at 06:49 UTC | |
by dsheroh (Monsignor) on Dec 29, 2007 at 08:35 UTC | |
by bradcathey (Prior) on Dec 29, 2007 at 14:06 UTC | |
by kulls (Hermit) on Dec 29, 2007 at 15:59 UTC |