<?php
include 'tplutil.inc';
include 'class.TemplatePower.inc.php';
$tpl = new TemplatePower('presentations/slides/intro/templatepower.tpl');
$tpl->prepare();
$tpl->assign("TITLE", 'My Title');
$tpl->assign("USER", get_user());
foreach (get_users() as $user) {
$tpl->newBlock('USERS');
$tpl->assign('USER', $user);
}
$tpl->printToScreen();
<h1>{TITLE}</h1>
<form><select>
<option>{USER}</option>
<!-- START BLOCK : USERS -->
<option>{USER}</option>
<!-- END BLOCK : USERS -->
</select></form>