Help for this page

Select Code to Download


  1. or download this
    <html>
      <head>
    ...
        [% INCLUDE 'events.txt' %]
      </body>
    </html>
    
  2. or download this
    use Template;
    use CGI;
    ...
    
    $t->process('template.tmpl') or die "Template process failed: ", $t->e
    +rror(), "\n";
    
  3. or download this
    ...
    [% IF var = 'what I want' %]
    ...
       [% END %]
    [% END %]
    ...