| Server IP : 172.64.80.1 / Your IP : 172.70.50.62 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/externalCall/ |
Upload File : |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<table width="60%" align="center" cellpadding="0" cellspacing="2">
<?php
require('../connect.php');
$db=db_connect();
$sql="select * from realdata in (select regNo from remitaorder where transapproved='True' and paymentType='School Fees')";
$result=$db->query($sql);
$num=$result->rowCount();
//$num=100;
$i=0;
while ($row=$result->fetch(PDO::FETCH_BOTH)){
?>
<tr>
<td><?php echo $row['sn'];?></td>
<td><?php echo $row['matNo'];?></td>
<td><img src="../passport/Reg<?php echo $row['matNo'];?>.jpg" width="140" height="140" /></td>
<td><img src="../signature/Reg<?php echo $row['matNo'];?>.jpg" width="140" height="140" /></td>
</tr>
<?php
$i+=1;
}
?>
<tr>
<td colspan="4"><hr /></td>
</tr>
<tr>
<td colspan="4"><?php echo 'Total Number of Record: '.$num;
?>
</fieldset></td>
</tr>
</table>
</body>
</html>