Hello,
I wrote a script (search script), which starts a session, like this:
session_start();
session_name("dis");
Ok, so all's well, the search thing displays photo's and to test the session, i did:echo session_id()
Displays a long ID, which is ok.
Then, when i click 'add to cart', the URL says http://213.93.21.194/add_to_cart.php?imagekey=9&dis=s9df76s976sd9f769sdf698s76derwq
Which is still ok...
So, when clicked, the item has been added to a database.
Going back to the search page to find something else, i get a new session_id(). By the way, the search-page, as mentioned above, has session_start() and session_name("dis").
I don't get it, every page has session_start().
And the session_id() is gone!
Anyone?
Fish