michaellunsford Posted March 8, 2006 Share Posted March 8, 2006 walked an end user through the process of checking that cookies were turned on in his browser, but my little cookie test page says he doesn't. Seems to work for everyone else though. Any ideas?note to the code -- this is an approximation of the acutal code.[code]<? if(!$_GET['cookietest']) { setcookie("test-cookie","test"); header("Location :".$_SERVER['PHP_SELF']."?cookietest=true"); die(); } elseif ($_COOKIE['test-cookie']!="test") echo "COOKIES ARE DISABLED"; else echo "You're good. Cookies are ON";?>[/code] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.