Potatis Posted April 15, 2008 Share Posted April 15, 2008 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 More sharing options...
unidox Posted April 15, 2008 Share Posted April 15, 2008 Use an array, or mysql Link to comment https://forums.phpfreaks.com/topic/101284-multiple-names-in-config-file/#findComment-518056 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.