Hello,
I am creating a web app and am using sessions to track users. When cookies are enabled in the browser the session_start() and everything after works great. No complaints.
I tried for testing purposes to disable cookies in my browser and instead of PHP kicking in with automatically using URL encoding with the PHPSESSION variable in the get stream, it blocks and the application does not see the user as logged in. (Making perfect sense if there is no $_SESSION value for the parameter in question). The problem is the get parameter not engaging. None of the anchors or forms insert the PHPSESSID into their url. Is there anything i can do to enable this functionality in PHP?
I am using PHP 4.3.4 in Windows with Apache 1.3.29 with the php.ini-recommended file. (Yes, i renamed it.. )
Thanks a lot!