karatekid36 Posted June 6, 2007 Share Posted June 6, 2007 if (!isset($_SESSION['admin'])) { include ('./includes/header_admin.html'); } else { include ('./includes/header.html'); }; In one of my tables, there is a column with the title admin and in the column one member will have admin in the column. When the person logs in, there is a few session variables set up. Session admin is one of the variables. I am using this so that when the person who has admin "privileges" they will see a different header which is used for nav on my site. Right now everyone is getting the header.html no matter what it says in the admin column. Can anyone assist me in trying to think of why this is happening. If you need any other code just ask and I will post it. Thanks Quote Link to comment https://forums.phpfreaks.com/topic/54383-need-help-with-an-if-statement/ Share on other sites More sharing options...
Psycho Posted June 6, 2007 Share Posted June 6, 2007 It woud help if you displayed the code you are using to set the session variable. Are you using session_start() at the top of your pages? You should also write all the session vars to the page to see what they contain: echo "<pre>"; print_r($_SESSION); echo "</pre>"; Quote Link to comment https://forums.phpfreaks.com/topic/54383-need-help-with-an-if-statement/#findComment-268922 Share on other sites More sharing options...
fert Posted June 6, 2007 Share Posted June 6, 2007 Right now everyone is getting the header.html no matter what it says in the admin column. because you're only checking if $_SESSION['admin'] has a value Quote Link to comment https://forums.phpfreaks.com/topic/54383-need-help-with-an-if-statement/#findComment-268923 Share on other sites More sharing options...
karatekid36 Posted June 6, 2007 Author Share Posted June 6, 2007 how can I check if it has a certain value so that a person who has the proper privileges will be directed properly? Quote Link to comment https://forums.phpfreaks.com/topic/54383-need-help-with-an-if-statement/#findComment-268930 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.