Basically as the title says I'm after a script that when it's found a cooke shows a live link and then when it isn't found shows a text message. + rep for script!
if (isset($_COOKIE['whatever'])) { echo "You have a cookie set"; } else { echo "You don't have a cookie set"; } PHP: Just chance $_COOKIE['whatever'] to use whatever cookie variable name you are looking for, then change the 2 echo statements.