I have been following the example provide with CF on how to build a shopping cart. However, in the example, they insert all items that go into a shopping cart into a table. I don't want to do that (yet).
How can put items into Session Variables and then recall them when it comes time to displaying them in the shopping cart without writing to a table?
I have the following defined in the application.cfm file so far:
<CFPARAM name="Session.StoreQuantities" default="">
<CFPARAM name="Session.StoreItems" default="">
Thanks.
How can put items into Session Variables and then recall them when it comes time to displaying them in the shopping cart without writing to a table?
I have the following defined in the application.cfm file so far:
<CFPARAM name="Session.StoreQuantities" default="">
<CFPARAM name="Session.StoreItems" default="">
Thanks.