<?php
include 'tplutil.inc';
require_once 'HTML/IT.php';
$tpl = new IntegratedTemplate('slides/pragmatic');
$tpl->loadTemplateFile('integratedtemplate.tpl');
foreach (get_users() as $user) {
$tpl->setCurrentBlock('option');
$tpl->setVariable('USER', $user);
$tpl->parseCurrentBlock();
}
$tpl->setVariable('TITLE', 'My Title');
$tpl->setVariable('USER', 'jimw');
$tpl->show();
<h1>{TITLE}</h1>
<form><select>
<option>{USER}</option>
<!-- BEGIN option -->
<option>{USER}</option>
<!-- END option -->
</select></form>