手揣网教程/网站教程/内容

php如何完成全路径无限分类导航(代码)

网站教程2024-11-10 阅读
[摘要]本篇文章给大家带来的内容是关于php如何实现全路径无限分类导航(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。<?php/*** @param php全路径无限分类*/...
本篇文章给大家带来的内容是关于php如何实现全路径无限分类导航(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

<?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如何实现全路径无限分类导航(代码)的详细内容,更多请关注php中文网其它相关文章!

  • 微信
  • 分享

  • 网站建设是一个广义的术语,涵盖了许多不同的技能和学科中所使用的生产和维护的网站。

    ……

    标签:php如何完成全路径无限分类导航(代码)
    相关阅读