<?php

//prevents caching
header("Expires: Sat, 01 Jan 2000 00:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: post-check=0, pre-check=0",false);
session_cache_limiter();
session_start();

require('/data/23/4/25/72/4514072/user/5351428/htdocs/login/config.php');

require('/data/23/4/25/72/4514072/user/5351428/htdocs/login/functions.php');

//this is group name or username of the group or person that you wish to allow access to
// - please be advise that the Administrators Groups has access to all pages.
if (allow_access(Administrators) != "yes")
{
include ('/data/23/4/25/72/4514072/user/5351428/htdocs/login/no_access.html');
exit;
}
?>