Aug 6th, 2009, 5:40 PM
Hey Doug -
Another thing to try is temporarily switch your submit button to a regular (non-image) submit button. I have a vague recollection that some versions of IE won't pass along the submit button name-value pair to the server.
If it DOES work on IE with a regular submit button, just change the line of PHP at the top from this:
to:
and create a hidden field in the form like so:
That should work.
- Ben
Another thing to try is temporarily switch your submit button to a regular (non-image) submit button. I have a vague recollection that some versions of IE won't pass along the submit button name-value pair to the server.
If it DOES work on IE with a regular submit button, just change the line of PHP at the top from this:
PHP Code:
"submit_button" => "continue",
PHP Code:
"submit_button" => "hidden_continue",
Code:
<input type="hidden" name="hidden_continue" value="1" />
That should work.
- Ben