http://www.phpfreaks.com/tutorials/41/1.php
Microsoft Internet Explorer Sessions Fix
There is one other little tricky issue I must tell you about. Since we all know even though Microsoft
makes every attempt to dominate the world, their software still has issues. Let's take IE 6 for
example. There's a problem with IE6 that when you are using sessions and you post to a form, when
you click your back button to make changes in the form, you have to click the REFRESH button on that
page to get the information that you posted back into the form. This only works about 50% of the
time, the other 50% the users information is lost and they have to type it over again. Not a good thing
if you are trying to get the person to enter their billing information to process an order. They might
just get irritated and leave. So, here's a solution for that. Enter this right below the session_start() of
each script (yes it still must be before anything is output to the browser).
header("Cache-control: private");
Now your users can hit the back button and change information all they want! Whew... no need to
sweat any more.