Cookie Detection
Posted: Mon Nov 24, 2003 7:38 pm
Is there a way to detect if the cookie exists? If so, how?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php
echo (isset($_COOKIE["cookieName"])) ? "Yes, the Cookie exists" : "No, the Cookie has crumbled";
?>