Ok so here is my code (see below), where I have the two 'exit;' commands, it gives me an error where the 'else' statement is. Basiclly what I am trying to do is to get the loop to stop if the first portion is true, then if it isnt true, to move on to the next part and stop there.
++++++++++++++code+++++++++++++++
<?php
if($position == "Technology Support Student Team Leader" ||
"Technology Support Assistant - Level 1" ||
"Technology Support Assistant - Level 2" ||
"Help Desk Office Assistant")
{
include("help.php");
}exit;
else
{
include("apage.php");
}exit;
?>