The problem cannot be completely avoided but you can at least mitigate it a little by adding the following to your code.
// to retain cache in IE back button
header("Cache-Control: Public");
It will work for IE but not v4.x of Netscape.
Add it at the top of your page before any output or you'll get an error. You can add session information first and then the header but nothing else.
HTH