include_once ("../auth.php");
include_once ("../authconfig.php");
include_once ("../check.php");
if ($check["level"] != 1)
{
// Feel free to change the error message below. Just make sure you put a "\" before
// any double quote.
print "";
print "Illegal Access";
print "
";
print "";
print "You do not have permission to view this page.";
exit; // End program execution. This will disable continuation of processing the rest of the page.
}
?>