KST012_0.php
981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
//*****************************************************************************
//*
//* プログラム名:個人設定
//* プログラムID:KST012_0.php
//* 機能 :個人設定更新
//* 作成者 :
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
$strDBinc="include/dbcon.inc";
include($strDBinc);
$strSQL="SELECT addr_syanai,addr_tori FROM paddress_tbl WHERE syain_cd='$PHP_SYAIN_CD'";
$objRecSet = pg_exec($strSQL);
if (pg_numrows($objRecSet)>0){
$objRecData = pg_fetch_object($objRecSet, 0);
$strSQL="UPDATE paddress_tbl SET ".
"addr_syanai=$bumon,addr_tori=$tori_group where syain_cd='$PHP_SYAIN_CD'";
$objRecSet = pg_exec($strSQL);
}
else{
$strSQL="INSERT INTO paddress_tbl ".
"VALUES('$PHP_SYAIN_CD',$bumon,$tori_group)";
$objRecSet = pg_exec($strSQL);
}
header("Location:KST001.php");
?>