I must be really stupid because it seems a fairly obvious thing is completely confusing me right now.
I have a session...
ie $_SESSION['handbag_id'];
and at a certain point, I need to completely kill this session.
ie
// at the start of the page
session_start();
// elsewhere on the same page
unset($_SESSION);
session_destroy();
And yet, I can then go to another page, and do a
echo $_SESSION['handbag_id'];
And I've still got the same handbag_id as before.
What am I missing? Do I not understand how this works or do I have some server setting that reigns supreme over my desire to destroy its values?