Hello guys I am using a simple password protection script in PHP like this:
$LOGIN_INFORMATION = array(
'user' => 'pass',
);
if (!USE_USERNAME && !in_array($pass, $LOGIN_INFORMATION)
|| (USE_USERNAME && ( !array_key_exists($login, $LOGIN_INFORMATION) ||
$LOGIN_INFORMATION[$login] != $pass ) )
How can I change this to read the user and password from a text file formatted like:
user:pass
?
Here is the full script i hope you can help me plz Click Here
Probably this is what you are looking for: