PK

ADDRLIN : /home/anibklip/pcfcindia.com/2017/
FLL :
Current File : /home/anibklip/pcfcindia.com/2017/sesschk.php

<?php

session_start();

if (!isset($_SESSION['super'])
   || $_SESSION['super'] !== true) {

   header('Location: login.php');
   exit;
}

?>


PK 99