i have the following:
if ($ui_level < $q_level_admin) {
print q_template_get("adminheader");
print q_template_get("adminnotauth");
print q_template_get("adminfooter);
exit;
} elseif (($ui_level >= $q_level_admin)) {
print q_template_get("adminheader");
} elseif {
and so on, with more elseifs....
If the expression in the conditional evaluates true, and the block is executed, I get a parse error on the line following the conditional. I just can't figure out why this happens.
Thanks in advance for your help,
Brian