我的数据库具有以下设置
productid | productname | category id
我想像这样输出它们:
category #1 item 1 item 2 item 3 category #2 item 1 item 2 item 3
我建议只需要一个简单的查询来获取所有行,按类别ID排序.仅当其值从上一行更改时才输出该类别.
原文链接:https://www.f2er.com/php/133638.html<?PHP $stmt = $pdo-> query("SELECT * FROM `myTable` ORDER BY categoryID"); $current_cat = null; while ($row = $stmt->fetch()) { if ($row["categoryID"] != $current_cat) { $current_cat = $row["categoryID"]; echo "Category #{$current_cat}\n"; } echo $row["productName"] . "\n"; } ?>