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? Link to comment https://forums.phpfreaks.com/topic/296368-convert-txt-file-to-array/ 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); Link to comment https://forums.phpfreaks.com/topic/296368-convert-txt-file-to-array/#findComment-1512107 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.