when using a header("Location: myscript.php"); it went into an infanate loop. My Example :
geoff1.php - sets a session variable, and uses a form POST to go to geoff2.php
geoff2.php - displays the session variable, and has a form POST to geoff2b.php
geoff2b.php - changes the session variable, and displays it
click the browser back button (going back to geoff2.php) and the session variable doesn't re-display with the new value.
So, I tried adding a the location header to geoff2.php, but when I POST from geoff1.php to geoff2.php, I'm in an infanate loop - it never makes it to actually display information on geoff2.php.