MDT050.php
1.47 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
//*****************************************************************************
//*
//* プログラム名:資料集
//* プログラムID:MDT050.php
//* 機能 :ファイルアップロード
//* 作成者 :
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
//***************************
//* インクルードファイル
//***************************
include("./include/session_start.inc");
include("./include/SessionChk.inc");
include("./include/STRING.inc");
//***************************
//* 画面制御
//***************************
include('./include/smarty.conf');
include("./include/dbcon.inc"); //DB接続
$strTempPath="temp/".$PHP_FOLDER_NAME."/siryou/";
if ($intFLSeq!=0){
$strSQL = "SELECT * FROM mysiryo_tbl Where seq=$intFLSeq";
$objRec = pg_exec($strSQL);
if($objRec==false){
echo("SQL実行に失敗しました(SELECT)");
exit;
}
$objData = pg_fetch_object($objRec, 0);
$File_title = "ファイル名";
$File_filename_jp = $objData->filename_jp;
$File_comment = $objData->comment;
}else{
$File_title = "";
$File_filename_jp = "";
$File_comment = "";
}
$o_smarty->assign('PHP_E_GRU_CAPA_OVER' , $_SESSION["PHP_E_GRU_CAPA_OVER"]);
$o_smarty->assign('File_title' , $File_title);
$o_smarty->assign('File_Name' , $File_filename_jp);
$o_smarty->assign('File_comment', $File_comment);
$o_smarty->assign('intFLSeq' , $intFLSeq);
$o_smarty->display('MDT050.tpl');
?>