| Server IP : 172.67.187.206 / Your IP : 172.71.28.156 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/www/news/csr/admin/core/ |
Upload File : |
<?php
if(!isset($_SESSION)) session_start();
if(isset($_SESSION['ugroup'])){
$user=$_SESSION["loguser"];
$ugroup=$_SESSION["ugroup"];
require_once "../../include/config.php";
require_once "../../include/PasswordHash.php";
$id = $mysqli->escape_string($_GET['id']);
$table = $mysqli->escape_string($_GET['dstatus']);
if($table=="requirements"){
$mysqli->query("UPDATE tb_requirements SET `r_donate`='Close' WHERE Id='$id'");
header("Location: ../account.php?page=requirements&op31=1=&msg=update");
}else if ($table=="donor"){
$mysqli->query("UPDATE tb_donor SET `d_donate`='Close' WHERE Id='$id'");
header("Location: ../account.php?page=donor&op40=1=&msg=update");
}else if($table=="log_school"){
//ปรับปรุงเลขผู้เสียภาษี สำหรับโรงเรียน
$idpay=$mysqli->escape_string($_POST['idpay']);
$mysqli->query("UPDATE log_school SET idpayment='$idpay' WHERE `username`='$id'");
header("Location: ../account.php?page=idpay&op33=1&msg=update");
}else if($table=="log_area"){
//ปรับปรุงเลขผู้เสียภาษี สำหรับเขตพื้นที่
$idpay=$mysqli->escape_string($_POST['idpay']);
$mysqli->query("UPDATE log_area SET idpayment='$idpay' WHERE `username`='$id'");
header("Location: ../account.php?page=idpay&op24=1&msg=update");
}else if($table=="setting_year"){
$year=$mysqli->escape_string($_POST['year']);
$mysqli->query("UPDATE setting_year SET set_year='$year' WHERE `y_id`='$id'");
header("Location: ../account.php?page=rob_donate&op14=1");
}
exit;
} else {
header("Location: ../index.php?msg=error");
exit;
}
?>