KST024_3.php 717 Bytes
<?php 
//*****************************************************************************
//* 
//* プログラム名:Googleカレンダー連携解除
//* プログラムID:KST024_3.php
//* 機能        :Googleカレンダー連携解除
//* 作成者      :
//* 
//*****************************************************************************
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 = 50 OR seq = 51 OR seq = 52 OR seq = 53)";
$objRec = pg_exec($strSQL);

header("Location:KST001.php");

?>