Jump to content

Session not unsetting


zimmo

Recommended Posts

I have a shopping cart, and I am using a php session to track the basket. All works fine, the only problem I have is completely removing the session once the order is placed.

 

The user places the order, goes through the process and then once complete are sent back to a page called order complete. I have placed the following at the very top of this file:

 

 

session_start();

session_unset();

session_destroy();

 

At first it looks as if the session is destroyed, but when I add an item to the basket it pulls up the item I previously ordered. Is the above the correct way? The session is only the sid?

Link to comment
Share on other sites

When you destroy a session, it will still show up, UNTIL you reload the page. The reason for this, is that the script gets all of the session variables when "session_start()" is called. Use Cadaver's post to unset the variables for the page you destroyed the session on.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.