I have a cookie.php:
Code: Select all
<?php
$value = 'something from somewhere';
setcookie("testcookie", $value, time()+3600, '/');
?>I have the cookie.php stored under http://blahblah.com/cookie.php
I manually type that address in and after that I go back to http://blahblah.com. This SHOULD work right??
But the cookie's not being set!! I've checked the temporary internet files and no cookie!