I have a classifieds site, and on the main page I want the last visited ads by the existing user to show up.
How would I do this?
Basically, it has to be something like this:
- User clicks on an ad.
- The ad ID gets saved in a cookie.
- Then, when clicking on another ad, that ad ID gets saved also.
- Then, whenever visiting the main page, those ads will be displayed by fetching the AD ID:s from the cookie.
Is it even possible to add values to an existing cookie ?