TDL901.php 884 Bytes
<?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;
?>