What are common issues that can cause a PHP shopping cart to display only one item without description or price?

This issue could be caused by a loop that is not properly iterating through the items in the shopping cart array. To solve this, ensure that the loop is correctly accessing each item's description and price from the array.

// Example code snippet to iterate through the shopping cart items and display them properly

foreach ($_SESSION['cart'] as $item) {
    echo $item['description'] . " - $" . $item['price'] . "<br>";
}