Vì bạn đã sắp xếp kết quả của mình theo sản phẩm, bạn có thể làm điều gì đó như sau:
$currentProduct = null;
foreach($products as $product) {
if ($currentProduct != $product['product']) {
// We got a new product. Show it with some fancy html
// Then store it in $currentProduct for the next iteration
$currentProduct = $product['product'];
}
// Show the title with some fancy html
}
Nếu bạn muốn sử dụng do while
-loop thay vào đó, nó vẫn như cũ.