PK

ADDRLIN : /home/anibklip/adhocacademy.com/include/
FLL :
Current File : /home/anibklip/adhocacademy.com/include/session.php

<?php
	session_start();
	
	if($_SESSION['loginUser']=='true'){
		$as='ok';
	}
	else{
		header("location:".HTTP_ROOT."index.php");
	}
?>


PK 99