PHP Classes

File: auth.php

Recommend this page to a friend!
  Classes of Kevin Cadman   Authentication   auth.php   Download  
File: auth.php
Role: Example script
Content type: text/plain
Description: Included on desired "members" pages
Class: Authentication
A session and cookie based authentication class
Author: By
Last change:
Date: 21 years ago
Size: 486 bytes
 

Contents

Class file image Download
<?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");
}
?>