A quick question about sessions, is there anyway of using sessions without cookies being sent at all? I'm using PHP4 and I have compiled (Linux/Apache module) it with --enable-trans-sid and all is well. I use start_session in my scripts and so on. If I tell my browser though to warn if a cookie is set I get the "server wishes to set a cookie that will only be sent back to itself" warning. So no cookies will be stored on the user machine, but its might still annoy some people. Anyways, I'm guessing there is no way to get rid of that?
I was looking at the alternative of appending a session id (or identifier) to the URL, but not sure if that avoids the problem (or rather issue)?
Thanks for any pointers
Thomas