shopping_cart.php does not run
This is in Chapter 10:
I get:
Fatal error: Call to a member function getPrice() on a non-object in C:\usr\web\shopping_cart.php on line 92:
<?php
$totalPrice = 0;
foreach ( $_SESSION["cart"] as $product ) {
$totalPrice += $product->getPrice();
$product is the non-object.
|