hmm, since nobody is replying -- i'll try and level it down a little 🙂
pollID in this case is '1'
i'm using this to make the cookie (this works fine, no problems here
$cookie_value = 'Voted for option ' . $voteID;
$cookie_expire_time = time() + 3600 * 12 * 365;
$cookie_path = '/';
setcookie ('r3nPoll' . $pollID , $cookie_value , $cookie_expire_time , $cookie_path);
And i'm using this to check it:
if(isset($_COOKIE['r3nPoll' . $pollID]))
//code goes here
As you know - the cookie is appearing in my cookies dir (along with all the other cookies), but the second script isnt picking it up, does anybody know whynot?