I'm having a little trouble with a message that sets a cookie coming back EVERY time the browser is closed when I go back to test my site locally. Is there some known issue with localhost / domain associated via your host file where cookies (regardless of their length) are deleted when the browser is closed? I'm running the new version of my site locally on my computer at home.
Here is an example of my JS code for setting the cookie in question.
onmousedown="document.cookie='bandwidth=2;path=;time()+314496000;'"
Now this is the only one of three cookies that is set by JavaScript. So when I look for any cookies after closing the browser the cookies set by PHP still exist.
Any ideas?
John