MDT021.php 1.16 KB
<?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');

?>