I currently have a shopping cart that uses cookies and oop to add items to a shopping cart and i then register the cart object in the session.
I want to now make this work for people who have cookies disabled. Someone told me about SID, I have trans.sid enabled in my php.ini but without cookies it does not append SID onto my URLS? I tried putting session_start at the top of all the pages and i manually added
page.php?<?=SID?>
To all of my links but then each time they go to a different page they are assigned a new session id..How would I make this work correctly?