HI
i have added the following code in my page as
header("Cache-Control: max-age=3600");
so its populating the data even if i click the back button however the sessions are also caching in that page so if i logged in its not showing me the status that i was logged in where as in other pages its showing correctly that i was logged in "IT WAS ONLY HAPPENING IN IE"
Please help.
Thanks in advance
cache problem in IE
Moderator: General Moderators
- kaisellgren
- DevNet Resident
- Posts: 1675
- Joined: Sat Jan 07, 2006 5:52 am
- Location: Lahti, Finland.
Re: cache problem in IE
Code: Select all
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: -1");