Da du allerede bestiller dit resultat efter produkt, kan du gøre noget som dette:
$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
}
Hvis du vil bruge din eksisterende do while
-loop i stedet, er det det samme.