mh....nn credo! gli altri file presenti nello script sono:

auth.php
Codice PHP:
<?php
    
//Start session
    
session_start();
    
    
//Check whether the session variable SESS_MEMBER_ID is present or not
    
if(!isset($_SESSION['SESS_MEMBER_ID']) || (trim($_SESSION['SESS_MEMBER_ID']) == '')) {
        
header("location: access-denied.php");
        exit();
    }
?>
gli altri sono per la registrazione....