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 :
unvalidate.php
<? require ("inc/header.php"); ?> <!- content starts here --> <form name="form1" method="post" action='unvalidate.php?action=unvalidate'> <input name="action2" type="hidden" value="yes"> <table width="90%" border="0" cellspacing="0" cellpadding="5"> <tr> <td colspan=8> <?php if (($action == unvalidate) OR ($action2 == yes)) { require("dounvalidate.php"); } ?> </td> </tr> <tr> <td colspan=6><u><b>Validated Membership Officer</b></u></td> <td colspan=2><input type="submit" name="Submit" value="unvalidate checked" onClick="return confirmLink(this, 'UNVALIDATE this?')" style="background-color:#006699; color:#FFFFFF; font-family:Tahoma, Verdana, Arial; font-size:11px; border:none; height:20px"></td> </tr> <tr bgcolor=#cccccc> <td><strong>Tick</strong></td> <td><strong>S/No</strong></td> <td><strong>Title</strong></td> <td><strong>Surname</strong></td> <td><strong>Firstname</strong></td> <td><strong>Othernames</strong></td> <td><strong>Action</strong></td> </tr> <? $query = "SELECT * FROM exam_officers WHERE eo_status=1 AND mstatus != 1"; $result = mysql_query($query); $num = mysql_num_rows($result); for ($i=1; $i<$num+1; $i++) { if ($i%2 ==0) {$bgcolor = '#cccccc';} else {$bgcolor = '#f0f0f0';} $row = mysql_fetch_array($result); $examofficer_id = $row["examofficer_id"]; $programme_id = $row["programme_id"]; $faculty_id = $row["faculty_id"]; $department_id = $row["department_id"]; $eo_username = $row["eo_username"]; $eo_title = $row["eo_title"]; $eo_surname = $row["eo_surname"]; $eo_firstname = $row["eo_firstname"]; $eo_othernames = $row["eo_othernames"]; $eo_email = $row["eo_email"]; $eo_date_reg = $row["eo_date_reg"]; $eo_surname = stripslashes($eo_surname); $eo_firstname = stripslashes($eo_firstname); $eo_othernames = stripslashes($eo_othernames); ?> <tr bgcolor=<? echo $bgcolor ?>> <td><input type="checkbox" name="check[]" value="<? echo $examofficer_id ?>"></td> <td><? echo $i ?></td> <td><? echo $eo_title ?></td> <td><? echo $eo_surname ?></td> <td><? echo $eo_firstname ?></td> <td><? echo $eo_othernames ?></td> <td>[<a href='unvalidate.php?id=<? echo $examofficer_id ?>&action=unvalidate' style='color: blue; font-size: 10px' onClick="return confirmLink(this, 'UNVALIDATE this?')">Unvalidate</a>]</td> </tr> <? } ?> </table> </form> <!- content ends here --> <? require ("inc/footer.php"); ?>