http://templatepower.codocad.com

Code
<?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();
Template
<h1>{TITLE}</h1>
<form><select>
<option>{USER}</option>
<!-- START BLOCK : USERS -->
<option>{USER}</option>
<!-- END BLOCK : USERS -->
</select></form>
Output