| 
<?php 
// You must to include protectedPage.php on top of your code
 require_once '../protectedPage.php';
 ?>
 <!DOCTYPE html>
 <html>
 <head>
 <meta charset="UTF-8">
 <title></title>
 </head>
 <body>
 <h1>You are granted to access this page</h1>
 <h2><?php echo getProtectedPageAccesUser(); ?></h2>
 </body>
 </html>
 
 |