Hey,
I'm writing a user tracking system for a shopping site. It will first check on the cookie from their prior visit, but if they enter through a page not that of the main page on the root directory and they don't have a cookie set, I want to create a user ID and set a cookie, but one that will be recognized across the whole site. So how do I do that? I tried:
SetCookie("userID",$userID,$settime,"/","my.com");
seems like that will work, but I guess I'm missing something.
Any Help is appreciated.
Ron