Wrox Programmer Forums
Go Back   Wrox Programmer Forums > PHP/MySQL > BOOK: Beginning PHP 5.3
|
BOOK: Beginning PHP 5.3
This is the forum to discuss the Wrox book Beginning PHP 5.3 by Matt Doyle; ISBN: 978-0-470-41396-8
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning PHP 5.3 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 29th, 2011, 03:06 PM
Registered User
 
Join Date: Apr 2011
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default 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.
 
Old July 31st, 2011, 01:40 PM
Authorized User
 
Join Date: Mar 2006
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
Default

The error tells you that your $_SESSION["cart"] is empty/NULL and $product is also empty/NULL.

Post all the code here using inside [PHP] tags. And describe step by step how you end up with error.





Similar Threads
Thread Thread Starter Forum Replies Last Post
HOW to Run php program dimpleboy PHP How-To 7 January 22nd, 2015 12:40 AM
How to run the code on PHP 5? kbunders BOOK: Professional CodeIgniter ISBN: 978-0-470-28245-8 0 December 16th, 2010 08:41 AM
Configure PHP to run in localhost hunt4it BOOK: Beginning PHP 6, Apache, MySQL 6 Web Development ISBN: 9780470391143 2 September 20th, 2010 06:38 PM
Chapter 5 - Don't run form4a.php [email protected] BOOK: Beginning PHP 6, Apache, MySQL 6 Web Development ISBN: 9780470391143 0 January 28th, 2010 04:15 PM
How to Run a PHP file? majeed Beginning PHP 1 September 26th, 2009 12:33 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.