Jump to content

Multiple names in config file


Potatis

Recommended Posts

Hello,

 

I'm using a simple bit of code that compares a user's session username against a set variable in a file called config.php so that the user can see a certain page without the hassle of typing their username and password again. If the person trying to go to that page is a different person, they'll have a different username so they'll be redirected somewhere else.

 

The following code works fine for one person, but is there a way I can add more?

 

In config.php I have:

 

$login = "name";

 

And at the top of my page I have:

 

 

include("config.php");	
if($_SESSION['username']!=$login)  {
header("Location: vpmain.php");
    exit;
    }

 

 

I have tried things after !=$login such as using || and && but I don't know how to get it to work.

 

Thanks for any help on this.

 

 

Link to comment
Share on other sites

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.