I’m using this function to determine whether my application should be online or offline:
function online() {
if ($online == "0") {
if($_SESSION['exp_user']['userlevel'] != "1") {
include("error/offline.php");
exit();
}
}
}
However, with the data value set to 0 in the database, and $online does = ‘0’, why is error/offline.php not included for those whoose user level is not 1?
Thanks 🙂
What is
$online, a global variable? If so you have to doglobal $onlineto access it inside a function. Right now$onlineis a defaultnullvalue, which is not equal to string “0”.