|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
  [2001-05-30 01:09 UTC] philhuen at myrealbox dot com
 I try to use 
session_cache_limiter('must-revalidate');
or
session_cache_limiter('public');
or
session_cache_limiter('public,'ust-revalidate');
before the session_start() function. However, the data missing problem in netscape 4.7 and 6 is still there! However,IE 5 has no problem!
This is how the problem appears! 
I have a form on a.php3 with post method. I send the data form a.php3 to b.php3. Then the b.php3 will redirect to c.php3. When I am in c.php3 and click back, the missing data will be shown.
a.php3 -> b.php3 -> c.php3
when b.php3  <- c.php3 (data missing)  
Thanks
Phil
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 00:00:01 2025 UTC | 
The correct line is: session_cache_limiter('private, must-revalidate'); And this works just fine for me with NS 4.77 --Jani>session_cache_limiter('private, must-revalidate'); This not worked. <?php session_cache_limiter('private, must-revalidate'); session_start(); echo session_cache_limiter (); ?> Produce: Content-type: text/html X-Powered-By: PHP/4.3.4 Set-Cookie: PHPSESSID=669e20e219ee95bfd0a4f22acfa89199; path=/ private, must-revalidate