if ($_SESSION['LOGGEDIN'] == "T") {
include("admin_menu.php");
echo "<hr>";
$op = $_GET['Option'];
if ($op == "AU"){
require("adduser.php");
} elseif ($op == "EU"){
include("edituser.php");
} elseif ($op == "AR"){
include("addreward.php");
} elseif ($op == "ER"){
include("editreward.php");
} elseif ($op == "LO"){
$_SESSION['LOGGEDIN'] = "F";
} else {
echo "hello,";
}
} else {
this works and shows my menu but when i click a link to show thispage.php?Option=AU it shows the else code.. why