Jump to content

check session array


robert_gsfame

Recommended Posts

I create session for my shopping cart n wish to check whether certain product has been added into cart.

I use in_array but not working...

 

session_start();

$productname=$_GET['productname'];

if(in_array($productname,$_SESSION['cart'])){

echo "Product has been added";}else{

echo "Not yet added";}

 

I always get the second answer although i have created the session for the product...

 

thx for any helps

Link to comment
https://forums.phpfreaks.com/topic/197624-check-session-array/
Share on other sites

If you only put the product id in the cart array then you can't use the product name in your in_array() call, which is what you have done in post 1. You'll need to use the product id in the in_array() call, not the product name because from what you say, that doesn't get stored.

Link to comment
https://forums.phpfreaks.com/topic/197624-check-session-array/#findComment-1037206
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.