PHP全路径无限分类导航LINK代码实现

Posted yangzailu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP全路径无限分类导航LINK代码实现相关的知识,希望对你有一定的参考价值。

<?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全路径无限分类导航LINK代码实现的主要内容,如果未能解决你的问题,请参考以下文章

手把手教你用php实现无限极分类功能

php 导航 无限级分类 zendframework

php实现无限级分类(递归方法)

PHP 根据子ID递归获取父级ID,实现逐级分类导航效果

如何用php实现添加无限分类?类似织梦后台那种可以无限添加分类

php实现无限级分类的两种方式