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>";
}
//**************************************************************************
大家是不是这样取商品分类-PHP教程,PHP应用
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 大家是不是这样取商品分类-PHP教程,PHP应用
相关推荐
- 暂无文章
