Since I'm new to cookies and PHP, I have created the following for trying to get my cookies to work properly, but I can't get it working;
<?php
if (!IsSet($mc)) { setcookie ("mc", "open"); }
else setcookie ("mc");
if (!IsSet($rl)) { setcookie ("rl", "open"); }
else setcookie ("rl");
?>
I have two cookies for my websites personal preferences, but only the first one works properly.. who can figure out how to check for both cookies in the first place, something like above?
Thanks in advance, Jeroen