Hi,
I am new to PHP and would like to know how to setup and use Cookies to store user menu selections between pages.
Basically, when a user say clicks on a menu option called "About Us", I would like to somehow store this selection via a cookie that I could then use somewhere else?
FYI, I am using the jquery .click function to determine which menu option is selected, i.e.
$("ul.sf-menu li a").click(function() {
var menu_opt = $(this).attr("href");
});
Thanks.