How can I use a database and PHP sessions to store a user's shopping cart? I am using CodeIgniter, if that helps.
Example code would also be nice.
|
1
|
How can I use a database and PHP sessions to store a user's shopping cart? I am using CodeIgniter, if that helps. Example code would also be nice. |
|||
|
|
|
|
I would recommend that you look at the CodeIgnitor Session Class. Additionally, you could look at Chris Shiflett's discussion on this topic. |
||
|
|
|
|
Hi, i am not familar with CodeIgniter, but i would write a add to basket funtion like this:
In this Shoping Basket funktion we save Product IDs in an Session array. Now here the Show Basket funktion:
Foreach ProudctID in our Session Basket we make a SQL query to output Product Informations... Now last but not least a clear Basket function:
Dont forget Best Regards nfo codejungle.org |
||
|
|
|
|
how about this ; - when guest add one item product in the cart
|
||
|
|