|
//menu
$ref = "home";
if(isset($_GET["ref"])){
$ref = $_GET["ref"];
}
$url = "?&ref=";
Switch($ref){
case "Aboutus":
case "aboutus":
$refPage = "aboutus.php";
$topic = "About Us";
break;
case "contactus":
$refPage = "contactus.php";
$topic = "Contact Us";
break;
case "EO":
break;
case "industrylink":
case "Industrylink":
$refPage = "industrylink.php";
$topic = "Industry Link";
break;
case "traineeinfo":
case "Traineeinfo":
$refPage = "traineeinfo.php";
$topic = "Trainee Information";
break;
case "traineefaq":
case "Traineefaq":
$refPage = "traineeFAQ.php";
$topic = "Frequently Asked Questions";
break;
case "employerinfo":
case "Employerinfo":
$refPage = "employerinfo.php";
$topic = " Employer Information";
break;
case "employerfaq":
case "Employerfaq":
$refPage = "employerFAQ.php";
$topic = "Frequently Asked Questions";
break;
case "qualifications":
case "Qualifications":
$refPage = "qualifications.php";
$topic = "Traineeship Qualifications";
break;
case "apply":
case "Apply":
$refPage = "apply.htm";
$topic = "Application Form";
break;
case "studentresources":
case "Studentresources":
$refPage = "Resources/index.php";
$topic = "";
break;
case "staffresources":
case "Staffresources":
$refPage = "staffresources.php";
$topic = "Access, Equity Principles and Processes";
break;
case "home":
$refPage = "home.php";
$topic = "My Freight Career";
break;
}
?>
|