欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-12-01 22:13:04
$value) { $str .= "{$value['catename']}"; } } echo displayPath(4,'cate.php?p=1&cid='); ......
<?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=');