mascotoc Posted March 10, 2006 Share Posted March 10, 2006 Hello Guys, My programmer left suddenly and I need help urgently as i am not a programmer.I am using a simple logincheck.php file and I want to grant access to User level with '2' and '5'my current following script is working perfectly if the user level is '2'. BUT how do i add '5'i.e. I want to give access to user whos level is either 2 or 5 rest all levels will be denied.[code]<?phpsession_start();if(!isset($HTTP_SESSION_VARS['level'])){ header("Location: http://www.website.com/login/error.php");} else { if($HTTP_SESSION_VARS['level'] != 2){ header("Location: http://www.website.com/login/error.php"); }}?>[/code]This code works perfectly... but how do i add ($HTTP_SESSION_VARS['level'] != 5)I tried using AND & OR .. but its giving error.I want something like [code]if($HTTP_SESSION_VARS['level'] != 2) OR if($HTTP_SESSION_VARS['level'] != 5)[/code] Quote Link to comment Share on other sites More sharing options...
joecooper Posted March 10, 2006 Share Posted March 10, 2006 if($HTTP_SESSION_VARS['level'] != 2) || ($HTTP_SESSION_VARS['level'] != 5){ // code to run}this will work, there is other ways but this is all you need Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.