Has this session been destroyed? When I loop back to the starting form page, it still has the same session_id. This is what I've done...
form.php (this posts to page1.php)
session_start();
session_destroy(); // I will loop back to this page to destroy session
page1.php (links to page2.php)
session_start();
$_SESSION['variable'] = '$variable';
page2.php (links back to form.php)
session_start();
echo "$variable";
Like I've said, the same session_id is still being shown in page2.php every visit...Has the session been destroyed and a new one started?
Thanks :p