Your problem is with the "|| 68":
if(isset($_SESSION['user_id']) && $_SESSION['user_id'] == 1 || 68) . It should be:
if(isset($_SESSION['user_id']) && $_SESSION['user_id'] == 1 || $_SESSION['user_id'] == 68)
It's like you're asking
if(68) , which will of course return true. You need to compare the 68 to $_SESSION['user_id']
Also, you may want to add another set of parenthesis to group the last two logical operations together:
if(isset($_SESSION['user_id']) && ($_SESSION['user_id'] == 1 || $_SESSION['user_id'] == 68))
- EF