$row['id'], 'name' => $row['product_title'], 'price' => $row['product_price'], 'image' => $row['product_img'], 'quantity' => $quantity ]; } // Calculate the cart total $_SESSION['cart_total'] = 0; foreach($_SESSION['cart'] as $product) { $_SESSION['cart_total'] += $product['price'] * $product['quantity']; } header("location: shop.php"); ?>