Using sessions for a multi-page survey. I instantiate it using the session_start() function. On the final page of the survey I have:
session_unset();
session_destroy;
This is followed by a Javascript redirect.
The session never goes away, even after leaving the site or closing the browser. If I try to go thru the survey again, no questions display because it (my program) thinks I already answered that question (because the session variables are set).
Help!!!