Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Explode a Session

Status
Not open for further replies.

d0nny

IS-IT--Management
Dec 18, 2005
278
GB
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...
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??
 
if $cart is already an array, why are you exploding it?

that array looks fine. however i would have the productid as the primary key of each array element. that way it is very easy to adjust quantities without iterating the whole array.

i would also store the offered price in the cart array as it is always possible that the price has changed between putting the item in the cart and checkout. that way you can test for this change and if it has happened you can warn the consumer of the price change before they make the purchase.

i suggest your function might work if you did the following

Code:
function getNumItems() {
     $c = empty($_SESSION['cart']) ? 0 : count($_SESSION['cart']);
     $s = ($c > 1) ? 's':'';
     return $s > 1 ?  '<p>items: <a href="/includes/shoppingcart.php">'.$c.' item'.$s.'</a></p>' : '<p>No items</p>';
}
 
Hi Justin, I thought you might answer this one!

But I've substituted my original code for your code and it always returns 'No Items'.
I have tried changing the 'return $s > 1' part to 'return $s > 0' as I want a true asnwer if the there are more than 0 items in the cart (is this right?) but I still get 'No Items' returned.
 
sorry. brain fart whilst typing the above

Code:
function getNumItems() {
     $c = empty($_SESSION['cart']) ? 0 : count($_SESSION['cart']);
     $s = ($c > 1) ? 's':'';
     return [red]$c > 0[/red] ?  '<p>items: <a href="/includes/shoppingcart.php">'.$c.' item'.$s.'</a></p>' : '<p>No items</p>';
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top