CON004_3.php
780 Bytes
<?php
//*****************************************************************************
//*
//* プログラム名:就業形態情報DB設定処理(削除)
//* プログラムID:CON003_3
//* 機能 :就業形態情報をDB設定する
//* 作成者 :
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
//***************************
//* インクルードファイル
//***************************
include("include/session_start.inc"); //セッション開始
include("include/SessionChk.inc"); //セッションチェック
include("include/dbcon.inc"); //DB接続
$strSql = "DELETE FROM mst_syuugyou_type WHERE syuugyou_type=".$_POST["syuugyou_type"];
$rsResult = pg_exec($pg_con,$strSql);
header("Location: CON004.php");
?>