码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-09-19 19:44:59      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:get   display   func   clu   sso   etc   代码   HERE   name   

<?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代码实现

标签:get   display   func   clu   sso   etc   代码   HERE   name   

原文地址:https://www.cnblogs.com/yangzailu/p/9675955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!