if($generator==1)
{
session_destroy();
session_unregister('generator');
echo"<b><i>Your session is unregistered, please make a new selection below.</i></b><p>";
}
I try to destroy a session with the above code, the weird thing is the session stays alive, what am I doing wrong?
Thanks!