MET992.php 813 Bytes
<?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;
?>