MET992.php
813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
//*****************************************************************************
//*
//* プログラム名:電子会議室
//* プログラムID:MET992.php
//* 機能 :電子会議室.発言制御
//* 作成者 :
//*
//*****************************************************************************
include("include/session_start.inc");
include("include/SessionChk.inc");
$strDBinc="include/dbcon.inc";
include($strDBinc);
$strSQL = "update kaigi_tbl set stop_flg = ".$flg." ";
$strSQL .= "where meeting_no = ".$mtgNo." ";
$strSQL .= "and remark_no = ".$remNo." ";
$strSQL .= "and remark_no = ".$remNo." ";
$strSQL .= "and answer_no = ".$ansNo." ";
$strSQL .= "and cp_answer_no = ".$cpaNo;
echo $strSQL;
$recData=pg_exec($strSQL);
if($recData==false){
echo("SQL実行に失敗しました(UPDATE)");
exit;
}
exit;
?>