PHP Classes

File: phpsecureweb/notAuthorized.php

Recommend this page to a friend!
  Classes of Bulent Tezcan   phpsecureweb   phpsecureweb/notAuthorized.php   Download  
File: phpsecureweb/notAuthorized.php
Role: Auxiliary script
Content type: text/plain
Description: displays the not authorized page
Class: phpsecureweb
Allow users certain rights, login with password.
Author: By
Last change:
Date: 22 years ago
Size: 308 bytes
 

Contents

Class file image Download
<?php
   
/*
    * @author Bulent Tezcan. [email protected]
    */

       
ob_start( );

        include
"header.inc.php";
       
       
        echo <<<HTML
<h3>
    If You want to show Not Authorized page please modify notAuthorized.php
</h3>
HTML;

        include
"footer.inc.php";

       
ob_end_flush( );

        return
true;

?>