1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php include_once("./_common.php"); header("Content-Type: text/html; charset=UTF-8"); include("./commonST.php");
$v = iconv("utf8","euckr","완료");
if($_GET['mode']=='set'){ $sql = "update sale_remit set status = '{$v}' where nidx = '{$_GET['nidx']}' "; $res = mysql_query($sql); }
if($_GET['mode']=='reset'){ $sql = "update sale_remit set status = '' where nidx = '{$_GET['nidx']}' "; $res = mysql_query($sql); }
?>
|