運用迴圈實現PHP分類列表_PHP教程

來源:互聯網
上載者:User

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=
    < %$s.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=
    < %$z.sort_id%>"
  10. title="< %$z.sort_name%>">
  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分類列表的具體解決方案。


http://www.bkjia.com/PHPjc/446076.htmlwww.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= %...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.