OK, I can't understand this.
As part of my shopping cart, I have a session called 'cart' whihc should have the product ID and the quantity in it.
I call a funtion called 'getNumItems...
The issue I have is that if there is more than 0 items in the cart, it always returns 1.
So if I have 1 item in the cart this function returns 1, but if I have 2 or more, it still returns 1!
I did put a 'print_r($cart)' in the function and I got this:
Actually, not that I write that, the array doesn't look right!
Can someone please put me straight??
As part of my shopping cart, I have a session called 'cart' whihc should have the product ID and the quantity in it.
I call a funtion called 'getNumItems...
Code:
function getNumItems() {
$cart = $_SESSION['cart'];
if (!$cart) {
return '<p>No items</p>';
} else {
// Parse the cart session variable
$items = explode(',',$cart);
$s = (count($items) > 1) ? 's':'';
return '<p>items: <a href="/includes/shoppingcart.php">'.count($items).' item'.$s.'</a></p>';
}
}
The issue I have is that if there is more than 0 items in the cart, it always returns 1.
So if I have 1 item in the cart this function returns 1, but if I have 2 or more, it still returns 1!
I did put a 'print_r($cart)' in the function and I got this:
Code:
Array (
[0] => Array (
[productid] => 83
[qty] => 2
)
[1] => Array (
[productid] => 98
[qty] => 2
)
)
Actually, not that I write that, the array doesn't look right!
Can someone please put me straight??