TDL901.php
884 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
38
39
40
41
<?php
//*****************************************************************************
//*
//* プログラム名:ToDo
//* プログラムID:TDL901.php
//* 機能 :ToDo 進捗のみの更新処理
//* 作成者 :
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
include('./include/smarty.conf');
$strDBinc="include/dbcon.inc";
include($strDBinc);
$strSQL="";
$objRec="null";
$strEND = " ";
if((int)$progress != 100){
$strEND = ", end_flg = 0 ";
}else{
$strEND = ", end_flg = 1 ";
}
//あっぷでーと
$strSQL = "update todo_tbl set ";
$strSQL .= "sinchoku = ".$progress.$strEND;
$strSQL .= "where seq = ".$seq;
$objRec = pg_exec($strSQL);
if($objRec == false){
echo("SQL実行に失敗しました(UPDATE)");
exit;
}
exit;
?>