I'm having difficulty with sessions.
On my local MAMP test server, if yes:
session_start (); echo session_id ();
I get a pretty session id.
If, however, the same thing on my web server, all I can get from session_id is "null". Testing the return from session_start () and using sessions all work, but session_id () $ SID and $ PHPSESSID are null.
Is this hidden for extra security? I want to allow flash to make changes to the shopping cart through PHP calls and display the shopping cart (which is stored in the session) using a browser.
source share