Hello,
For some reason, the first time someone accesses a page on my website, the PHPSESSID gets added to all links and forms even though the session is available (echo session_id()😉 right on that page.
This is happening only the first time a page on the site is accessed, later on the session will not attach to links (which is what I want since I have forms where specific fields are required and by inserting a hidden field will screw up my JavaScript).
My question is how can I make sure that even on the first page access, the PHPSESSID does not attach itself to all the links?
I don't use session_start and session_register since it became obsolete.
I can not play with the php.ini since is not hosted by me.
PHP version: 4.1.0
Thanks.