MDT021.php
1.16 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
<?php
//*****************************************************************************
//*
//* プログラム名:資料集
//* プログラムID:MDT021.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');
$strDBinc="include/dbcon_group.inc";
include($strDBinc);
$strSQLmst = "SELECT * FROM viewer_tbl";
$objRecmst = pg_exec($strSQLmst);
if($objRecmst==false){
echo("SQL実行に失敗しました(SELECT)");
exit;
}
for ($intCnt = 0; $intCnt < pg_numrows($objRecmst); $intCnt++) {
$objDatamst = pg_fetch_object($objRecmst, $intCnt);
$view_name[$intCnt]=$objDatamst->view_name;
$view_url[$intCnt]=$objDatamst->view_url;
$comment[$intCnt]=$objDatamst->comment;
$file_type[$intCnt]=$objDatamst->file_type;
}
$o_smarty->assign('view_name',$view_name);
$o_smarty->assign('view_url',$view_url);
$o_smarty->assign('comment',$comment);
$o_smarty->assign('file_type',$file_type);
$o_smarty->display('MDT021.tpl');
?>