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 :
update_acct.php
<?php session_start(); include_once("auth.inc.php"); include_once("config.php"); $officer_id=$_SESSION['officer_id']; ?> <? $eo_surname = addslashes($eo_surname); $eo_firstname = addslashes($eo_firstname); $eo_title = addslashes($eo_title); $update="UPDATE examadmin SET username='$eo_username', password='$eo_password', surname='$eo_surname',title='$eo_title',othernames='$eo_othernames' WHERE id='$officer_id'"; $results = mysql_query($update); $upd_affected = mysql_affected_rows(); if ($upd_affected) { header("Refresh: 1; URL=view_acct.php?w_update=Account was updated"); exit; } else { header("Refresh: 1; URL=view_acct.php?w_update=Sorry, Account was not successfully updated."); exit; } ?>