/var/www/onesolution.com.hk/support/sys_save.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
require("checkuser.php");
require(
"configure.php");

$bcc htmlspecialchars($_POST['bcc'], ENT_QUOTES);

$sql "update sys_other set content = '$bcc' where id = 1";

if(!
mysql_query($sql)){
    echo 
mysql_errno()." - ".mysql_error();
}

header("Location: sys_other.php");
?>