Jump to content

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/54383-need-help-with-an-if-statement/
Share on other sites

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>";

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.