http://www.php.net/

Code
<?php
include 'tplutil.inc';
$title 'My Title';
$user get_user();
$users get_users();
include 
'php.tpl';
Template
<h1><?=$title?></h1>
<form><select>
<?foreach ($users as $option) {?>
<option <?=($option == $user) ? 'selected' : ''?>><?=$option?></option>
<?}?>
</select></form>
Output

My Title