I've run into a wall and i've been unable to google my way out of it and any help would be greatly appreciated.
basically I have a form with two dropdown boxes that are populated from a mysql database. The choice from the first box populates the second box via javascript.
When the form is submitted, a script decides which page you need to be redirected to based on another database call. The form is currently posting to self, but initially the redirect script was in its own file.
All of this works fine until the user hits the back button from the landing page. IE6 is including $_POST['submit'] when the back button is pressed and the form immediately returns to the referring page, effectively killing the back button.
This only seems to be an issue on ie6 as safari and firefox work fine.
If anyone has any ideas about a way to keep the form from submitting when the back button is pressed I'd be greatful to hear them.
-sA