Jump to content

convert txt file to array


Boxerman

Recommended Posts

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

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.