File "superadminAuth.php"
Full path: /home/fsibplc/public_html/localhost/admin/middleware/superadminAuth.php
File
size: 193 B (193 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
if($_SESSION['auth_role']!=2)
{
$_SESSION['message'] = "You are not Authorised as Super Admin for this page!";
header("Location:index.php");
exit(0);
}
?>