I am working on a new site, and I have already created 4 different color schemes for it, sorta like the forums here. I was wondering on how to create a cookie js to store the user selection, and then apply that code to a button in flash…:q:
Im not PHP expert man, I don’t know any PHP, but I am guessing you can create a function in PHP that will set a cookie depending on the value in the function parameter…
I don’t know PHP syntax, but I am going to take a shot…
function applyCookie(cookieValue) {
setcookie ("cookie", cookieValue);
};
And then on your button you call the function like…
applyCookie(“blue”);
Or something like that. This is about as much as I can help you on this subject. Sorry.