PHP Classes

File: deny_access.php

Recommend this page to a friend!
  Classes of Olaf Lederer   Access user Class   deny_access.php   Download  
File: deny_access.php
Role: Application script
Content type: text/plain
Description: deafult page if access level is to low
Class: Access user Class
Site user registration and page access restriction
Author: By
Last change:
Date: 18 years ago
Size: 650 bytes
 

Contents

Class file image Download
<?php
include($_SERVER['DOCUMENT_ROOT']."/classes/access_user/access_user_class.php");
$access_denied = new Access_user;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Access denied!</title>
<meta name="description" content="">
<meta name="keywords" content="">
</head>
<body>
<h2>Access denied!</h2>
<p>It's not allowed to your account to view this site!</p>
<p>&nbsp;</p>
<p><a href="<?php echo $access_denied->main_page; ?>">Main</a></p>
</body>
</html>