亚洲欧美日韩综合系列在线_91精品人妻一区二区_欧美大肥婆一级特大AA片_九色91视频免费观看_亚洲综合国产精品_av中文字幕在线不卡_久久精品色综合网_看黄色视频的软件_无卡无码高清中文字幕码2024_亚洲欧美日韩天堂网

php如何實(shí)現(xiàn)全路徑無限分類導(dǎo)航(代碼)

來源:不言 發(fā)布時(shí)間:2018-10-10 16:00:23 閱讀量:738

本篇文章給大家?guī)淼膬?nèi)容是關(guān)于php如何實(shí)現(xiàn)全路徑無限分類導(dǎo)航(代碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你有所幫助。

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

<?php

 

/**

 * @param php全路徑無限分類

 */

 

include('db.inc.php');

function getPathCate($cateid){

    $sql = "select * ,concat(path,',',id) fullpath from likecate where id = $cateid";

    $res = mysql_query($sql);

    $row = mysql_fetch_assoc($res);

    $ids = $row['fullpath'];

    $sql = "select * from likecate where id in ($ids) orders by id asc";

    $res = mysql_query($sql);

    $result = array();

    while ($row = mysql_fetch_assoc($res)) {

        $result[] = $row;

    }

    return $result;

}

 

function displayPath($cateid,$link='cate.php?cid='){

    $res = getPathCate($cateid);

    $str = '';

    foreach ($res as $key => $value) {

        $str .= "<a href ='{$link}{$value['id']}'>{$value['catename']}</a>";

    }

 

}

 

echo displayPath(4,'cate.php?p=1&cid=');

以上就是php如何實(shí)現(xiàn)全路徑無限分類導(dǎo)航(代碼)的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!


標(biāo)簽: PHP
分享:
評(píng)論:
你還沒有登錄,請(qǐng)先