in reply to Can i check various condition in <TMPL_IF> using HTML::Template
If you need to check a non-trivial condition when using HTML::Template, you'll have to do it in code. E.g.,
$template->param(a_or_b_or_c => ($a || $b || $c)); ... <TMPL_IF a_or_b_or_c>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Can i check various condition in <TMPL_IF> using HTML::Template
by kprasanna_79 (Hermit) on Jan 18, 2005 at 08:39 UTC | |
by dws (Chancellor) on Jan 18, 2005 at 08:56 UTC |