如何在PHP 中使用While 循環按給定ID 將MySQL 資料組織成多個部分
在包含SQLSQL中、series_color 和Product_name,您可以使用PHP 中的while 循環按組織的部分顯示資料。所需的輸出如下所示:
A12 Series Product - Milk - Tea - sugar - water B12 Series Product - Water - Banana - Cofee - Tea
要實現此目的,請按照以下步驟操作:
對結果進行排序:
$stmt = $pdo->prepare("SELECT series_id, product_name FROM yourTable ORDER BY series_id"); $stmt->execute();
產生部分:
$last_series = null; echo "<ul>\n"; while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) { if ($row['series_id'] != $last_series) { if ($last_series) { echo "</ul></li>\n"; } echo "<li>" . $row['series_id'] . " Series Product\n"; echo "<ul>\n"; $last_series = $row['series_id']; } echo "<li>" . $row['product_name'] . "</li>\n"; } if ($last_series) { echo "</ul></li>\n"; } echo "</ul>\n";
以上是如何使用 PHP 的 While 迴圈將 MySQL 資料組織成段?的詳細內容。更多資訊請關注PHP中文網其他相關文章!