<?PHP

require("jtplv4.inc.php");

$template = new jtpl();

$template->readtemplate("example.tpl");

$template->includetemplate("manualinclude.tpl""INCLUDEMEUK");

$template->enterblock("FOO");
    
$template->startiteration();
    
$template->assignvar("NUMBER"10);
    
$template->caseblock("QUESTION""DONTKNOW");

    
$template->enterblock("BAR");
        
$template->startiteration();
        
$template->assignvar("NUMBER"1);
        
$template->ifblock("CORRECT"1);
        
        
$template->startiteration();
        
$template->assignvar("NUMBER"2);
        
$template->ifblock("CORRECT"0);

        
$template->startiteration();
        
$template->assignvar("NUMBER"3);

    
$template->leaveblock();
    
$template->startiteration();
    
$template->assignvar("NUMBER"20);

    
$template->enterblock("BAR");
        
$template->startiteration();
        
$template->startiteration();
        
$template->startiteration();
        
$template->startiteration();

$template->torootblock();
$template->assignvar("NUMBER""137");

$quotetest = <<< EINDE
' " \  \' \" \\  \\' \\" \\\  \\\' \\\" \\\\
EINDE;

$template->assignvar("QUOTETEST"$quotetest);

$template->display();

print_r($template);

?>