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
/
Edit File:
assign_stud_reg_no.php
<? include("inc/header.php"); include("inc/fxn.php"); ?> <table cellspacing="0" cellpadding="5" class="mytable" border="1" width="100%"> <th align="left">S/No</th><th align="left">Names</th><th align="left">School</th><th align="left">State</th><th align="left">NSE Branch</th><th>Approve Application</th> <? $sql="SELECT * FROM clearance_status c,reg_profile r WHERE c.stud_id=r.stud_id AND r.regno_assign='0' "; $result=mysql_query($sql); $count=mysql_num_rows($result); if(!$count){ echo "No record found"; } $sno=0; while ($row=mysql_fetch_array($result)){ $sno++; $surname=$row['surname']; $othernames=$row['othernames']; $stud_id=$row['stud_id']; $fullnames="$surname $othernames"; $school_name=GetAny("universities",$row['school'],"id","name"); $state_name=GetAny("state",$row['state_id'],"stateid","state_name"); $branch_name=GetAny("branch",$row['branch_id'],"branchid","branch_name"); $clear_id=$row['clear_id']; ?> <tr id="myrow"> <td><? echo $sno ?></td><td><? echo $fullnames ?></td><td><? echo $school_name ?></td><td><? echo $state_name ?></td><td><? echo $branch_name ?></td><td> <a href=assign_stud_reg_no2.php?stud_id=<? echo $stud_id ?>>Assign Reg No</a> </td> </tr> <? } ?> </table> <? include("inc/footer.php"); ?>
Simpan