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_school2609.php
<? include("inc/header.php"); session_start(); $officer_id=$_SESSION['officer_id']; $row=GetMany("admin",$officer_id,"id"); $branch_id=$row['branch_id']; ?> <table border="1" width="80%" cellpadding="5" cellspacing="0"> <tr> <td><strong>S/no</strong></td><td><strong>School Name</strong></td><td><strong>No of Applicants</strong></td> </tr> <? $sno=0; $sql="SELECT * FROM universities WHERE branch_id='$branch_id' ORDER by name"; $result=mysql_query($sql); while ($row2=mysql_fetch_array($result)){ $sno++; $school=$row2['id']; $school_name=$row2['name']; ?> <tr> <td><? echo $sno ?></td><td><? echo $school_name ?></td><td><? echo noOfApplicants($school); ?></td> </tr> <? } ?> </table> <? include("inc/footer.php") ?>