| Server IP : 172.64.80.1 / Your IP : 172.69.58.211 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/admin_student/ |
Upload File : |
<?php
//die("The Page will be available very soon");
session_start();
//require_once('check_payment.php');
$matNo=$_SESSION['matNo'];
$formNo=$_SESSION['formNo'];
if (strlen($matNo)<8){
die("<h3>Payment for this Session Not Activated Yet!</h3>");
}
require_once('../connect.php');
$db=db_connect();
$aspoak="select matNo,formNo from realdata where matNo='$matNo'";
$aspoa_exe=$db->query($aspoak);
$aspoa_count=$aspoa_exe->rowCount();
if ($aspoa_count==1){
$sql_f=$aspoa_exe->fetch(PDO::FETCH_ASSOC);
$formNo=$sql_f['formNo'];
}else{
$formNo=$_SESSION['matNo'];
}
$aspoa="select formNo from admitted where formNo='$formNo'";
$aspoaQ=$db->query($aspoa)->rowCount();
$aspoaQ=1;
//die();
if (($aspoaQ==1) or ($matNo=='QS20200204724')){
// session_destroy();
// echo "am here";
// die();
require_once('index_pay_schoolFees.php');
}else {
echo '<div style="text-align: right"><a href="javascript:history.go(-1)"> Go to Previous page</a></div>';
die("<h2> The Payment for Returning Students has not commenced. Contact ICT on WhatsApps - 07061230735</h2>");
}
//require_once('index_pay_schoolFees.php');
?>