Would anyone happen to know why the browser wouldn't send a cookie that it's recorded, or why PHP wouldn't receive the cookie if it is sent? My line reads:
setCookie("session", $session, time()+900, "", "", 0);
And sure enough, when I check cookies.txt (Netscape 4.73), the cookie is there -- it updates every time. That's just the problem, though -- each and every time, PHP generates a new session ID, replacing the old one...and it's doing it because it's not receiving the cookie that was previously set. I get nothing when I try to list the contents of $HTTP_COOKIE_VARS. Oddly, about half an hour ago a session took and kept working; I manually deleted it from the db to see if it would work again...and no luck. I didn't modify the code in between.
I'm out of clues. Can anybody help?
-Jeremy