LIN006.php
971 Bytes
<?php
//*****************************************************************************
//*
//* プログラム名:メニュー作成
//* プログラムID:KST006.php
//* 機能 :カテゴリ設定
//* 作成者 :K.Yoshimura
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
include("inc/header.inc");
include('./include/smarty.conf');
$strDBinc="include/dbcon.inc";
include($strDBinc);
$strSql = "SELECT seq,category_name FROM mst_link " .
"ORDER BY disp_rank ";
$rsRecset = pg_exec($pg_con,$strSql);
$intRsCnt = pg_numrows($rsRecset);
for ($i = 0 ; $i <= $intRsCnt-1 ; $i++) {
$sel_category_name .= "<option value='" .pg_result($rsRecset,$i,"seq")."'>".pg_result($rsRecset,$i,"category_name")."</option>\n";
}
$o_smarty->assign('sel_category_name',$sel_category_name);
$o_smarty->display('LIN006.tpl');
?>