Help for this page

Select Code to Download


  1. or download this
      <input type=text name=foo
                       value='<TMPL_VAR NAME="foo">'>
    
  2. or download this
      <input type=radio name=bar value="bar1"
             <TMPL_VAR NAME="bar1_checked">>
    
  3. or download this
      <TMPL_IF NAME="bar1_checked">
      <input type=radio name=bar value="bar1" checked>
      <TMPL_ELSE>
      <input type=radio name=bar value="bar1">
      </TMPL_IF>
    
  4. or download this
      <TMPL_IF NAME="bar1_checked">
      <tr>
      <td><input type=radio name=bar value="bar1" checked></td>
    ...
      <td>$47</td>
      </tr>
      </TMPL_IF>