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
https://forums.phpfreaks.com/topic/101284-multiple-names-in-config-file/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.