LIN006_0.php
1.02 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
<?php
//*****************************************************************************
//*
//* プログラム名:リンク集
//* プログラムID:LIN006_0.php
//* 機能 :新規メニューの作成
//* 作成者 :K.Yoshimura
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
include('./include/smarty.conf');
//**** DB接続 ****//
$strDBinc="include/dbcon.inc";
include($strDBinc);
$strSQL="";
$objRecSet="null";
if ($sinki_edit_flg == "edit") {
$strSQL = "SELECT seq,category_name FROM mst_link Where seq= $menu";
$objRecSet = pg_exec($strSQL);
if($objRecSet==false){
echo("SQL実行に失敗しました(SELECT)");
exit;
}
$objData = pg_fetch_object($objRecSet, 0);
$strCate_Name=$objData->category_name;
}
$o_smarty->assign('strCate_Name',$strCate_Name);
$o_smarty->assign('sinki_edit_flg',$sinki_edit_flg);
$o_smarty->assign('menu',$menu);
$o_smarty->display('LIN006_0.tpl');
?>