首页 > 开发 > PHP > 正文

大家是不是这样取商品分类

2024-05-04 22:54:35
字体:
来源:转载
供稿:网友
php代码:--------------------------------------------------------------------------------
// 取商品分类
//**************************************************************************
$result=$db->query("select * from categories where categories_parent_id=0 order by categories_sort_order");
while($row=$db->fetch_array($result))
{
$categories.=$row[categories_name]."<br>";
$result2=$db->query("select * from categories where categories_parent_id=$row[categories_id] order by categories_sort_order");
while($row2=$db->fetch_array($result2))
{
$categories.=$row2[categories_name]."/";
}
$categories.="<br><br>";
}
//**************************************************************************
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表