欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

运用循环实现PHP分类列表_PHP教程

程序员文章站 2024-04-06 14:22:49
...

html代码...用到两个foreach 循环

  1. div class="modContent">
  2. %foreach from=$sort item=s%>
  3. div class="categories">
  4. acronym class="icon"> /acronym>
  5. a href="category.php?sort_id=
    "
    >
  6. strong> %$s.sort_name%> /strong>
  7. /a> br />
  8. %foreach from=$s.zi item=z%>
  9. a href="category.php?sort_id=
    "
  10. title="">
  11. %$z.sort_name%>
  12. /a>
  13. %/foreach%>
  14. /div>
  15. %/foreach%>
  16. /div>

PHP分类列表之PHP代码 简单的说就是利用foreach 循环一个数组然后在这个数组里插入一个索引 索引对的直就是每次查询的所有子分类

  1. //商品分类
  2. $sql="SELECT * FROM `hcl_sort`
    WHERE `parent_id`=0 ORDER BY
    `sort_id` DESC"
    ;
  3. $sort=$db->getAll($sql);
  4. foreach ($sort as $key=>$val){
  5. $sort_id=$sort[$key]['sort_id'];
  6. $sql="SELECT * FROM `hcl_sort`
    WHERE `parent_id`={$sort_id}"
    ;
  7. $zi=$db->getAll($sql);
  8. $sort[$key]['zi']=$zi;
  9. }
  10. $tpl->assign('sort',$sort);

以上代码就是PHP分类列表的具体解决方法。


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/446076.htmlTechArticlehtml代码...用到两个foreach 循环 div class = modContent %foreach from =$sort item = s % div class = categories acronym class = icon /acronym a href = category.php?sort_id= %...