query($sql); $types = db_load_enum('asset','asset_type'); $smarty->assign("type_ids", $types); $smarty->assign("type_names", $types); $smarty->assign("type_selected", $types[0]); $assetclass_options = array(); foreach ($sth->fetchAll(PDO::FETCH_NUM) as $rec) { $assetclass_options[$rec[0]] = $rec[1]; } $smarty->assign("assetclass_options", $assetclass_options); $smarty->display("assetadd.tpl"); include("footer.php"); ?>