這篇文章帶給大家的內容是關於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中文網其他相關文章!