<?php
/*
This file is included on "members" pages.
*/
include 'common.php';
$auth = new Authentication($db);
if(!$auth->CheckAuth()) {
/*
If we made it here, it means the Authentication has failed.
So we header them back to login.php, and we set the failed variable.
NOTE!
When using Windows 2003 Server, PHP will not see the $_GET variable failed as SET if you
call login.php?failed. Hence why I've used failed=1.
*/
header("Location:login.php?failed=1");
}
?>
|