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:
examlist2014s1.php
<?php include("inc/header.php"); ?> <form action="examlist2014s.php" target="_new" method="post"> <fieldset style="border: 0px; width: 400px;"> <legend style="padding: 5px; border: 1px solid;">Search</legend> <table> <tr><td>Exam Centre</td><td> <select name="centres"> <option value="">Select Centre</option> <?php $s=mysql_query("SELECT * FROM centres"); while ($r=mysql_fetch_array($s)){ ?> <option value="<?php echo $r['id']; ?>"><?php echo $r['name'];?></option> <?php } ?> </select> </td></tr> <tr><td>Category</td><td> <select name="cat"> <option value="">Select Category</option> <?php $c=mysql_query("SELECT * FROM corp_cat"); while ($rc=mysql_fetch_array($c)){ ?> <option value="<?php echo $rc['id']; ?>"><?php echo $rc['name'];?></option> <?php } ?> </select> </td></tr> <tr><td>Branch</td><td> <select name="branch"> <option value="">Select Branch</option> <?php $cd=mysql_query("SELECT * FROM branch"); while ($rcb=mysql_fetch_array($cd)){ ?> <option value="<?php echo $rcb['branchid']; ?>"><?php echo $rcb['branch_name'];?></option> <?php } ?> </select> </td></tr> <tr><td></td><td><input type="submit" value="submit" /></td></tr> </table> </fieldset> </form>
Simpan