Aangezien je je resultaat al per product bestelt, zou je zoiets als dit kunnen doen:
$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
}
Als je je bestaande do while
. wilt gebruiken -loop in plaats daarvan is het hetzelfde.