Is it possible to delete one value from a session variable?
When a user adds a item to his cart, it will update the session variable with the unique id for that item.
eg.
item|a:5:{s;i:66578;i:1;i:3456;i:2;i:3284;i:3;i:1232;i:4;i:23423;}
count|i:5;
What I want to achieve is, if the use does not want a specific item
in the cart, they delete that item alone.
Thanks