SIM0941.php 988 Bytes
<?PHP 
//*****************************************************************************
//* プログラム名:初期設定更新
//* プログラムID:SIM0941.php
//* 機能        :初期設定更新
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("./inc/session_start.inc");
include("./inc/SessionChk.inc");
include("./inc/dbcon.inc");
include('./inc/smarty.conf');

$sYear = intval($_POST["sYear"]);
$sMonth = intval($_POST["sMonth"]);
$sMoney = intval($_POST["sMoney"]);
$sUnit = intval($_POST["sUnit"]);

$strSQL = "delete from start_tbl";
$objRec = pg_exec($strSQL);
if($objRec==false){
	echo("SQL実行に失敗しました(DELETE)");
	exit;
}
$strSQL = "insert into start_tbl (start_year, start_month, start_money, start_unit) values(".$sYear.", ".$sMonth.", ".$sMoney.", ".$sUnit.")";
$objRec = pg_exec($strSQL);
if($objRec==false){
	echo("SQL実行に失敗しました(INSERT)");
	exit;
}

header("Location:./SIM0940.php");
?>