| Server IP : 172.64.80.1 / Your IP : 108.162.241.66 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/FpE_cess/ |
Upload File : |
<?php
/**********************************************************************
*Error Function Includes
*
**********************************************************************/
//$logo = $fla="ologo"; include('../showbanner.php'); // continue later
if (!isset($_SESSION)) {
session_start();
}
function success($ok){
print <<<EOF
<html>
<head>
<title>FPE - Progress Report</title>
<link href="../style/thamin.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="wrap">
<!-- Header -->
<div id="name"> $logo</div>
<div id="layer1"></div>
<div id="clr20"></div>
<div id="logbar2">
<div class="icon1"></div>
<div id="successbar">
<h2 style="color:#F00">Congratulations...!</h2>
<p>$ok.</p>
<table class='retrieve'>
<tr>
<td valign='top'><a href='../jones-secure/index.php'>Return to Admin Home</a></td>
<td><a href='javascript: history.back(-1)'>Return to previous page</a></td>
</tr>
</table>
</div>
</div>
<div id="clr30"></div>
<div id="layer1"></div>
</div>
</body>
</html>
EOF;
die();
}
$ok .= "";
if(strlen($ok) > 0) {
success($ok);
}
?>