");
foreach ($ret as $col => $key) {
if ($key['deployable'] == "yes") { // don't bother to display if the deployable option is set to "no"
if ($key['os_subversion'] != '') { // handle subversions of an OS (e.g., "Windows XP >> Professional <<")
array_push($OSes,'');
}
else {
array_push($OSes,'');
}
}
}
array_push($OSes,"");
$select = implode ("",$OSes);
$template=new Smarty;
$template->left_delimiter = '{{';
$template->right_delimiter = '}}';
$template->assign("css",CSS);
$template->assign("js",JS);
$template->assign("select_os",$select);
$template->assign("footer",FOOTER_TMP);
$template->assign("header",HEADER_TMP);
$template->assign("body",$body);
$template->assign("user",$_SESSION['username']);
$template->display("profile.html");
?>