/ Published in: PHP
The problem is some times the redirect may kick you off to the next page before all the session variables have been saved. The true solution to lost session vars on redirect is to simply call session_write_close(); before setting the redirect header. This will insure that php finishes writing the session info before page redirect gets underway.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<? $_SESSION['forward'] = "This session data will not be lost!"; ?>
URL: http://uk.php.net/session_start