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 :
view_app_appl.php
<? include("inc/header.php"); $officer_id=$_SESSION['officer_id']; $row=GetMany ("admin",$officer_id,"id"); $school_id=$row['school_id']; echo "<b>School Name:</b> "; echo GetAny("universities",$row['school_id'],"id","name"); echo "<br><br><br>"; ?> <p style="background-color:#999; width:150px; height:20px"><b>APPROVED APPLICANTS</b></p> <form action="approve_applicant.php" method="post" name="form1" onSubmit="return validate(form1);"> <table cellpadding="5" cellspacing="0" border="1" width="80%"> <tr><td colspan="8" align="center"><h3><? echo GetAny("universities",$row['school_id'],"id","name");?> </h3></td></tr> <tr><td colspan="8"><a href=print_app_stud.php target="_new">Print</a></td></tr> <tr><td>S/No</td><td>Matric/Admission No</td><td>Applicant's Name</td><td>Department</td><td>Faculty</td><td>Level</td><td>View Applicants Profile</td></tr> <? $sql="SELECT * FROM clearance_status,reg_profile WHERE reg_profile.stud_id=clearance_status.stud_id AND reg_profile.school='$school_id' AND clearance_status.dean_verify='1'"; $result=mysql_query($sql); $sno=0; while ($row=mysql_fetch_array($result)){ $sno++; $surname=$row['surname']; $othernames=$row['othernames']; $fac=$row['faculty']; $dept=$row['dept']; $stud_id=$row['stud_id']; $level=$row['level']; $matric_no=$row['matric_no']; ?> <tr> <td><? echo $sno ?></td><td><? echo $matric_no ?></td><td><? echo "$surname $othernames" ?></td><td><? echo $dept ?></td><td><? echo $fac ?></td><td><? echo $level ?><td><a href=view_app_prof.php?stud_id=<? echo $stud_id ?>>View Applicant Profile</a></td> </tr> <? } ?> </table> </form> <? require("inc/footer.php"); ?>