1.資料設定檔db.php
- return array(
- array(
- 'one' => '關於我們',
- 'two' => array(
- array(
- 'three_tit' => '公司介紹',
- 'three_cont' => array(
- '企業概況',
- '組織架構',
- '發展歷程',
- '企業文化',
- '服務理念'
- )
- ),
- array(
- 'three_tit' => '企業榮譽',
- 'three_cont' => array(
- '獲獎證書',
- '行業貢獻',
- '資質認證',
- '協會活動',
- '公司的成就')
- ),
- array(
- 'three_tit' => '銷售網絡',
- 'three_cont' => array(
- '東北',
- '華北',
- '中東',
- '華南',
- '西南',
- '西北'
- )
- )
- )
- ),
- array(
- 'one' => '產品展示',
- 'two' => array(
- array(
- 'three_tit' => '進出口貿易',
- ' three_cont' => array(
- '數位產品',
- '最新能源',
- '新鮮水果',
- '肉類食品',
- '衣服',
- '金銀首飾'
- )
- ),
- array(
- 'three_tit' => '商業服務',
- 'three_cont' => array(
- '資格認證',
- '人才培育',
- '熱門商品推薦',
- '最新科技前沿'
- )
- )
- )
- ),
- array(
- ' one' => '新聞中心',
- 'two' => array(
- array(
- 'three_tit' => '企業動態',
- 'three_cont' => array(
- '公司新聞',
- '新品上市',
- '企業動態'
- )
- ),
- array(
- 'three_tit' => '產業動態',
- 'three_cont' => array(
- '媒體聚焦',
- '業界關注',
- '國內行情',
- '國際行情'
- )
- )
- )
- ),
- array(
- 'one' => '聯絡我們',
- 'two' => array(
- array(
- 'three_tit' => '聯絡方式' ,
- 'three_cont' => array(
- '線上客服',
- '通訊地址',
- '電話傳真',
- '線上留言'
- )
- ) ,
- array(
- 'three_tit' => '人才招募',
- 'three_cont' => array(
- '專案經理',
- '助理秘書',
- '頻道代理',
- '網站工程師'
- )
- )
- )
- )
- );
-
-
- ?>
複製程式碼
2.index檔
- header('Content-type:text/html;charset=utf-8');
- // 載入資料
- $data = include './db.php';
- // 載入html檔
- include './nav.html';
-
- ?>
複製程式碼
3.nav.html檔案 |