File "auth.php"

Full Path: /home/analogde/www/00000/P1/includes/auth.php
File size: 229 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
	//Start session
	session_start();
	
	//Check whether the session variable SESS_MEMBER_ID is present or not
	if(!isset($_SESSION['ID']) || (trim($_SESSION['ID']) == '')) {
		header("location: ../");
		exit();
	}
?>