<?php
setCookie("CITY","Nowhere",0,'/');
?>
I see the cookie within the Firefox cookies window, but it's not in the cookies.txt where the browser stores all cookies. What am I missing?
Revised:
Is it that I still have to set the domain argument to say '.domain.com'
If I just use setCookie("CITY","Nowhere"), it shows the cookie domain as "localhost", and path as "/php/". But, when I looked into the localhost/php/ folder, I don't see the cookie file?