CON114.php 1 KB
<?php 
//*****************************************************************************
//* 
//* プログラム名:電子会議室初期ルール設定処理
//* プログラムID:CON114.PHP
//* 機能        :電子会議室ルール初期表示の設定
//* 作成者      :
//* 
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");

//*****************************************************************************
//* インクルードファイル
//*****************************************************************************
include("include/session_start.inc");						//セッション開始
include("include/SessionChk.inc");							//セッションチェック
include("include/dbcon.inc");										//DB接続

$txtRule = addslashes($txtRule);
$strSql = "delete from mst_default_data where data_no = 1";
$rsResult = pg_exec($pg_con,$strSql);

$strSql = "insert into mst_default_data (data_no, default_data) values(1, '".$txtRule."')";
$rsResult = pg_exec($pg_con,$strSql);

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