Mini Shell

Direktori : /home/mhcadmin/www/include/
Upload File :
Current File : /home/mhcadmin/www/include/auth_validate.php

<?php

//If User is logged in the session['user_logged_in'] will be set to true

//if user is Not Logged in, redirect to login.php page.
if (!isset($_SESSION['user_logged_in'])) {
	header('Location:In73nal_Login.php');
}

 ?>