Como restringir o usuário a algumas páginas usando PHP
if( ! isset($_SESSION["User_ID"]) ){
die('Only logged in users can access this page!');
}
Crazy Crab
if( ! isset($_SESSION["User_ID"]) ){
die('Only logged in users can access this page!');
}