$total = 0; foreach ($products as $product) { $subtotal = $product['price']*$product['quantity']; $total += $subtotal; } echo $total;