Help for this page

Select Code to Download


  1. or download this
    # In the perl
    $template->param(SHOULD_I_DISPLAY_THIS => ($foo + $bar) > 2);
    -------
    <!-- In the template -->
    <TMPL_IF SHOULD_I_DISPLAY_THIS>this</TMPL_IF>
    
  2. or download this
    <TMPL_IF EXPR="(FOO + BAR) > 2">this</TMPL_IF>