| Server IP : 172.64.80.1 / Your IP : 172.69.17.154 Web Server : Apache System : Linux mail.federalpolyede.edu.ng 5.10.0-32-amd64 #1 SMP Debian 5.10.223-1 (2024-08-10) x86_64 User : federalpolyede.edu.ng_idh35skikv ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/federalpolyede.edu.ng/httpdocs_backup/council/ |
Upload File : |
<?php
if (!isset($_SESSION)) session_start();
// Fetch the page to display
ob_start();
$fetch = $_GET['fpe']; // get action file to know which page to show
$fpe_ray = array('council','1','2','3','4','5', '6','7','8','9','10','11','12', '13','14','15');
if(!in_array($fetch,$fpe_ray)) include("../404error.php"); // check page manipulations
else{
if($fetch == $fpe_ray[0]) include("intro.php");
elseif($fetch == $fpe_ray[1]) include("1.php");
elseif($fetch == $fpe_ray[2]) include("2.php");
elseif($fetch == $fpe_ray[3]) include("3.php");
elseif($fetch == $fpe_ray[4]) include("4.php");
elseif($fetch == $fpe_ray[5]) include("5.php");
elseif($fetch == $fpe_ray[6]) include("6.php");
elseif($fetch == $fpe_ray[7]) include("7.php");
elseif($fetch == $fpe_ray[8]) include("8.php");
elseif($fetch == $fpe_ray[9]) include("9.php");
elseif($fetch == $fpe_ray[10]) include("10.php");
elseif($fetch == $fpe_ray[11]) include("11.php");
elseif($fetch == $fpe_ray[12]) include("12.php");
elseif($fetch == $fpe_ray[13]) include("13.php");
elseif($fetch == $fpe_ray[14]) include("14.php");
elseif($fetch == $fpe_ray[15]) include("15.php");
}
// display content area
$mainbody = ob_get_contents();
ob_end_clean();
// include template
if(!in_array($fetch,$fpe_ray)) include("../FPE_skin/404.php");
else include('../FPE_skin/fpe_skins.php');
?>