Can one set a cookie when there is an active session and the session id is stored in a cookie? Would it be a seperate cookie or would it be stored in the same cookie.
For example, I have a site that uses sessions and I don't set the session id cookie manually but it gets set by php. So, if I want to set a cookie, can I just use setcookie() and expect it to work?
Also, save me some manual reading....if we don't have register globals on (which I do but...) does the cookie variable look like... $_COOKIE['variable'] ?