MET960.php
1.04 KB
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
38
39
<?php
//*****************************************************************************
//*
//* プログラム名:電子会議室
//* プログラムID:MET960.php
//* 機能 :電子会議室.議事録更新
//* 作成者 :
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
$strDBinc="include/dbcon.inc";
include($strDBinc);
$strSQL = "update kaigi_info_tbl set minutes = '".addslashes($txtMinutes)."' where meeting_no = ".$mtgNo;
$recData=pg_exec($strSQL);
if($recData==false){
echo("SQL実行に失敗しました(UPDATE)");
exit;
}
?>
<script language="javascript">
function DoSubmit(){
document.e_gru.action = "MET060.php";
document.e_gru.method="POST";
document.e_gru.submit();
return false;
}
</script>
<body onload="DoSubmit()">
<form name = "e_gru" method="post">
<input name='mtgNo' type="hidden" value="<?php echo $mtgNo ?>">
<input name='mode' type="hidden" value="<?php echo $mode ?>">
</form>
</body>