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] Link to comment https://forums.phpfreaks.com/topic/4647-please-help-with-session-level/ 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 Link to comment https://forums.phpfreaks.com/topic/4647-please-help-with-session-level/#findComment-16262 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.