<?php
# if already visited, redirect to another page
if ( $_COOKIE[visited] == "br549" )
{
header("location: www.mysticdragonforest.myadopts.com/pages.php?page=tootired");
exit;
}
else
{
# Set Cookie & Expire Time
$expire = time()+60*60*24;
setcookie( "visited", "br549", $expire);
}...