Boxerman Posted May 17, 2015 Share Posted May 17, 2015 Hey guys, I want to be able to add usernames to a text file, each username will be on a new line: username1 username2 for example, the code i'm using currently is: $userloggedin = $_SESSION['username']; $usernamelower = strtolower($userloggedin); $allowed_users = array('username1','username2'); if(!in_array($usernamelower,$allowed_users)) die('Forbidden - Leave now!'); How do i convert the txt file and use it in the $allowed_users array? Quote Link to comment Share on other sites More sharing options...
Barand Posted May 17, 2015 Share Posted May 17, 2015 Use file() $allowed_users = file('user.txt', FILE_IGNORE_NEW_LINES); Quote Link to comment 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.