/ Published in: PHP
URL: http://uk.php.net/session_start
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 sessionwriteclose(); before setting the redirect header. This will insure that php finishes writing the session info before page redirect gets underway.
Expand |
Embed | Plain Text
<? $_SESSION['forward'] = "This session data will not be lost!"; ?>
You need to login to post a comment.
