ZIS9130.php 917 Bytes
<?PHP 
//*****************************************************************************
//* プログラム名:実績メニュー
//* プログラムID:ZIS9130.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');
include("./inc/const.inc");

$strSQL="SELECT * FROM z_mst_kamoku WHERE kamoku_id=".$kamoku_id." ORDER BY kamoku_name";
$objRec = pg_exec($strSQL);
if($objRec==false){
		echo("SQL実行に失敗しました(SELECT)");
		exit;
}
$objData    = pg_fetch_object($objRec, 0);
$txtInpName = $objData->kamoku_name;


$o_smarty->assign('div_id'    , $div_id);
$o_smarty->assign('kamoku_id' , $kamoku_id);
$o_smarty->assign('txtInpName', $txtInpName);

$o_smarty->display('ZIS9130.tpl');

?>