Re: Password Protect Pages
Although this dose the same. Mine is completely different and more advanced. You can only have one user/pass mine you can create as many user/pass's you want for different users. for example:
$LOGIN_INFORMATION = array(
'admin' => 'admin'
'username' => 'password'
'bob' => '7uy43df-ef'
);
Also uses MD5 even tho MD5 isn't that good its still better then nothing. And has a logout feature:
if(isset($_GET['logout'])) {
setcookie("verify", '', $timeout, '/');
header('Location: ' . LOGOUT_URL);
exit();
}
This is why I'm selling it. Because its not a 10 line code witch is easy to bypass.