I have a session-variable:
$_SESSION['subscriberid'] = 1234
Then I want to delete this when I don't need it anymore... So I use unset($_SESSION['subscriberid']) and think everything is OK.
But Hey; the session-variable is still there!!!
What am I doing wrong here? How can this variable be deleted without using session_destroy() ?
I'm using PHP 4.3.0.
Thanks!