PHP无限级分类的展示有关问题。折腾一天了,搞不定呀
程序员文章站
2024-01-18 10:06:22
...
PHP无限级分类的展示问题。折腾一天了,搞不定呀
函数:
求高手赐教。
------解决思路----------------------
函数:
//无限分类显示函数
function get_str($id = 0) {
global $str;
$sql = "select classid,classname,classstate,classtype,classurl,classpage,classorder,classtitle,classkeyword,classdescription,classpid from bz_class where classpid= $id";
$result = mysql_query($sql);//查询pid的子类的分类
if($result && mysql_affected_rows()){//如果有子类
while ($row = mysql_fetch_array($result)) { //循环记录集
$str.= "" ; //字符串构建 " .$row['classid']. " ". $row['classname']. " ID: 882233
". $row['classtype']." ". $row['classid']." ". $row['classid']." ". $row['classid']."
get_str($row['classid']); //调用get_str(),将记录集中的id参数传入函数中,继续查询下级
}
}
return $str;
}
求高手赐教。
------解决思路----------------------
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论