Protože již objednáváte výsledek podle produktu, můžete udělat něco takového:
$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
}
Pokud chcete použít své stávající do while
-loop, je to stejné.