Login   Register  
PHP Classes
elePHPant
Icontem

File: deny_access.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2005-06-16 15:04
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>