MET990.php 800 Bytes
<?php 

//*****************************************************************************

//* 

//* プログラム名:電子会議室

//* プログラムID:MET990.php

//* 機能        :電子会議室.既読処理

//* 作成者      :

//* 

//*****************************************************************************

include("include/session_start.inc");
include("include/SessionChk.inc");
$strDBinc="include/dbcon.inc";
include($strDBinc);

$strSQL = "update pkaigi_tbl set read_flg = 1 ";
$strSQL .= "where syain_cd = '".$PHP_SYAIN_CD."' ";
$strSQL .= "and meeting_no = ".$mtgNo." ";
$strSQL .= "and remark_no = ".$remNo." ";
$strSQL .= "and answer_no = ".$ansNo." ";
$strSQL .= "and cp_answer_no = ".$cpaNo;
$recData=pg_exec($strSQL);
if($recData==false){
	echo("SQL実行に失敗しました(UPDATE)");
	exit;
}
exit;
?>