<? //Verify that the user is an ADMIN, Pledge Educator, or 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] != "pledge_ed")
{
header("Location:/php/brother_home.php");
exit;
}
?>