Eftersom du redan beställer ditt resultat efter produkt kan du göra något i stil med detta:
$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
}
Om du vill använda din befintliga do while
-loop istället, det är samma sak.