KST024_4.php
829 Bytes
<?php
//*****************************************************************************
//*
//* プログラム名:GoogleカレンダーAPI 公開設定
//* プログラムID:KST024_4.php
//* 機能 :GoogleカレンダーAPI 公開設定
//* 作成者 :
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
//**** DB接続 ****//
$strDBinc="include/dbcon.inc";
include($strDBinc);
$strSQL="DELETE FROM kojin_data_tbl WHERE syain_cd = '".$PHP_SYAIN_CD."' AND seq = 53";
$objRec = pg_exec($strSQL);
$strSQL="INSERT INTO kojin_data_tbl (syain_cd, seq, memo) VALUES ('".$PHP_SYAIN_CD."',53, '".(int)$_POST["g_disp_flg"]."')";
$objRec = pg_exec($strSQL);
header("Location:KST001.php");
?>