<?php
/**
* Load class
*/
require_once("./template.class.php");
/**
* Construct
*/
$temp = new Template(Array('nocompilerstop' => true));
/**
* Setting the option 'nocompilerstop' as of v1.0.2 allows
* the programmer to execute code after Template::compile()
* as been executed, which can be useful from time to times
*/
$temp->addcache('<h3>Headline missing end tag');
/**
* Compile
*/
$temp->compile();
/**
* Print out the rest
*/
echo("</h3><p />... But now it has one ;)");
?>
|