One Hat Cyber Team
Your IP :
216.73.216.84
Server IP :
50.6.229.107
Server :
Linux server.hostburly.com 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.2.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
andjemzt
/
nportal.andjemztech.com
/
examAdmin
/
View File Name :
studentApp2.php
<? include("inc/header.php"); ?> <style> table{font-size:12px} tr:nth-child(even) {background: #CCC;} tr:nth-child(odd) {background: #FFF;} </style> <?php include("inc/config.php"); $sql=mysql_query("SELECT * FROM studentreg a,transaction b,clearance c WHERE a.studID=b.transAppID AND a.studID=c.studID AND c.appTypeID='5' AND b.transStatus='PAID' AND c.clearApproval1='1'"); if(!$sql){ echo mysql_error();} ?> <pre><span><strong><h4>PENDING ES APPROVAL STUDENT APPLICATION</h4></strong></span></pre> <table border="1" cellspacing="0" cellpadding="5" width="100%"> <tr><th>S/No</th><th>Name</th><th>Application No</th><th>Approval</th></tr> <?php $sno=0; while ($row=mysql_fetch_array($sql)){ $sno++; ?> <tr><td><?php echo $sno; ?></td><td><?php echo $row['studSurname']." ".$row['studOthernames']; ?></td><td><?php echo $row['studAuthNum']; ?></td><td><a href="revertStudent.php?studID=<?php echo $row['studID']; ?>">Revert Approval</a><td></tr> <?php } ?> </table>