CON162_2.php 806 Bytes
<?php 
//*****************************************************************************
//* 
//* プログラム名:DB設定処理(削除)
//* プログラムID:CON162_2
//* 機能        :在席項目をDB設定する
//* 作成者      :
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");

//*****************************************************************************
//* インクルードファイル
//*****************************************************************************
include("include/session_start.inc");
include("include/SessionChk.inc");
include("include/dbcon.inc");

//当番マスタ
$strSql = "DELETE FROM mst_common_word WHERE type = 1 And seq =".$_POST["seq"];
$rsResult = pg_exec($pg_con,$strSql);

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