<?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('/home/www/dynamic/uv.ro/tudorconstructionltd.uv.ro/public_html/config.php');

require('/home/www/dynamic/uv.ro/tudorconstructionltd.uv.ro/public_html/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 ('/home/www/dynamic/uv.ro/tudorconstructionltd.uv.ro/public_html/no_access.html');
exit;
}
?>