Here's an example HTML page using UltraTemple:
<html>
<body>
<tag:Content as="b" defaultValue="Hello UltraTemplate user!" />
</body>
</html>
...and the code to process it:
<?php
// Include UltraTemplate class
include("ultratemplate.php");
// Instanciate UltraTemplate class
objTemplate = new UltraTemplate();
// Load the template
objTemplate->load("mytemplate.tpl");
// Bind to template
objTemplate->bind();
// Display template
objTemplate->display();
?>
Using the code above, the HTML page will render as:
<html>
<body>
<b>Hello UltraTemplate user!</b>
</body>
</html>
To learn more or download UltraTemplate go to http://www.ultratemplate.com/