Cookie Detection
Moderator: General Moderators
-
Straterra
- Forum Regular
- Posts: 527
- Joined: Mon Nov 24, 2003 8:46 am
- Location: Indianapolis, Indiana
- Contact:
Cookie Detection
Is there a way to detect if the cookie exists? If so, how?
Code: Select all
<?php
echo (isset($_COOKIE["cookieName"])) ? "Yes, the Cookie exists" : "No, the Cookie has crumbled";
?>