SESSION variables not passed from page after destroying the rest

franella

New Member
I am at a total loss for words. I allow an admin to reset their registration if reaching an error during the process. In theory, the following code should function like this:page is reached, $adminvalidated is set based on session data. The $_SESSION array is cleared; the cookie is cleared on the consumer end; the session id is regnerated and the session is destroyed. Then the session is restarted and the previously mentioned variable is put back into Session.the "echo" statements included below work but when I redirect to another page (commented out below), the session variables DO NOT carry over.Yes I have started the session on the follow up page as well.\[code\]<?php session_start(); ob_start(); if( $_SERVER['SERVER_PORT'] == 80) { header('Location:https://'.$_SERVER['HTTP_HOST'].$_SERVER["REQUEST_URI"]); die(); } $adminvalidated = $_SESSION['ADMINVALIDATED']; $_SESSION = array(); if (ini_get("session.use_cookies")) { $params = session_get_cookie_params(); setcookie(session_name(), '', time() - 42000, $params["path"], $params["domain"], $params["secure"], $params["httponly"] ); } session_regenerate_id(true); session_destroy(); session_start(); $_SESSION['ADMINVALIDATED'] = $adminvalidated; echo $_SESSION['ADMINVALIDATED'];/* header("Location: ../a.php"); exit;*/?>\[/code\]
 
Back
Top