php實現三級導覽列效果

來源:互聯網
上載者:User

1.資料設定檔 db.php

  1. return array(
  2. array(
  3. 'one' => '關於我們',
  4. 'two' => array(
  5. array(
  6. 'three_tit' => '公司介紹',
  7. 'three_cont' => array(
  8. '企業概況',
  9. '組織架構',
  10. '發展曆程',
  11. '企業文化',
  12. '服務理念'
  13. )
  14. ),
  15. array(
  16. 'three_tit' => '企業榮譽',
  17. 'three_cont' => array(
  18. '獲獎認證',
  19. '行業貢獻',
  20. '資質認證',
  21. '協會活動',
  22. '公司的成就')
  23. ),
  24. array(
  25. 'three_tit' => '銷售網路',
  26. 'three_cont' => array(
  27. '東北',
  28. '華北',
  29. '中東',
  30. '華南',
  31. '西南',
  32. '西北'
  33. )
  34. )
  35. )
  36. ),
  37. array(
  38. 'one' => '產品展示',
  39. 'two' => array(
  40. array(
  41. 'three_tit' => '進出口貿易',
  42. 'three_cont' => array(
  43. '數位產品',
  44. '最新能源',
  45. '新鮮水果',
  46. '肉類食品',
  47. '衣服',
  48. '金銀首飾'
  49. )
  50. ),
  51. array(
  52. 'three_tit' => '商務服務',
  53. 'three_cont' => array(
  54. '資格認證',
  55. '人才培養',
  56. '熱門商品推薦',
  57. '最新科技前沿'
  58. )
  59. )
  60. )
  61. ),
  62. array(
  63. 'one' => '新聞中心',
  64. 'two' => array(
  65. array(
  66. 'three_tit' => '企業動態',
  67. 'three_cont' => array(
  68. '公司新聞',
  69. '新品上市',
  70. '企業動態'
  71. )
  72. ),
  73. array(
  74. 'three_tit' => '行業動態',
  75. 'three_cont' => array(
  76. '媒體聚焦',
  77. '業內關注',
  78. '國內行情',
  79. '國際行情'
  80. )
  81. )
  82. )
  83. ),
  84. array(
  85. 'one' => '聯絡我們',
  86. 'two' => array(
  87. array(
  88. 'three_tit' => '連絡方式',
  89. 'three_cont' => array(
  90. '線上客服',
  91. '通訊地址',
  92. '電話傳真',
  93. '線上留言'
  94. )
  95. ),
  96. array(
  97. 'three_tit' => '人才招聘',
  98. 'three_cont' => array(
  99. '專案經理',
  100. '助理秘書',
  101. '渠道代理',
  102. '網站工程師'
  103. )
  104. )
  105. )
  106. )
  107. );
  108. ?>
複製代碼
2.index檔案
  1. header('Content-type:text/html;charset=utf-8');
  2. // 載入資料
  3. $data = include './db.php';
  4. // 載入html檔案
  5. include './nav.html';
  6. ?>
複製代碼
3.nav.html檔案
  1. 無標題文檔
    • 網站首頁
複製代碼
php
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.