I have a very very simple file...
<?
//logout
setcookie ('membercookie');
echo "Logged Out";
?>
Now, if I execute this in public_html, it deletes my cookie and prints "Logged Out",
Great...
Now, if I try to execute this in public_html/any_other_directory
it prints "Logged Out", but doesn't delete the cookie!
Could anyone tell me why, and more importantly a way around it, its driving me crazy!!!