Hi!
I have a form that uses an image instead of the submit button.
Looks like this:
<!--Next-->
<br/>
<p>Please click <b>NEXT</b> to continue.</p>
<br/>
<p style="text-align:right;">
<input type="image" src="JPG/next.jpg" alt="submit and go to next page"/>
</p>
</form>
The form action is set to "theNextPage.php".
Everything works fine, except when I check the database after submission, I see two records instead of one (that is the new record is doubled).
I was looking at disabling the button after it has been clicked, but that should really be a problem, should it, since on click they go to the next page anyway...
Any ideas?
Thanks.