PHP Classes

File: common.php

Recommend this page to a friend!
  Classes of Kevin Cadman   Authentication   common.php   Download  
File: common.php
Role: Auxiliary script
Content type: text/plain
Description: Includes outside classes
Class: Authentication
A session and cookie based authentication class
Author: By
Last change:
Date: 21 years ago
Size: 247 bytes
 

Contents

Class file image Download
<?PHP
/*
This file is pretty self explanitary. Used to include all the other classes.
*/
 
require_once 'DB_INFO.php';
  require_once
'Authentication.php';
  require_once
'Smarty-2.5.0/libs/Smarty.class.php';
   
session_start();
 
?>