<? //auth_ec_ifc.php
//Verify the user is an ADMIN, IFC rep, or a member of the Executive Committee
session_start();
if ($_SESSION[valid_login] != "true")
{
header("Location:/index.php");
exit;
}
if($_SESSION[auth] != "EC" && $_SESSION[auth] != "ADMIN" && $_SESSION[auth] != "IFC")
{
header("Location:/php/brother_home.php");
exit;
}
?>