Hi, this is a HTML or Javascript question, but since we PHPBuilder do involves some levels of HTML or Javascript coding, I decided to post the question here.
How to disable a sumbit button upon click(when the form is sumited)?
Thanks!:rolleyes:
Hello
Just change your form tag and submit button like below.
<FORM method="POST" action="submit.php" onsubmit="form.b1.disabled = 1;" name=form>
<INPUT type="submit" value="Press Only Once" name="b1"> </Form>
Mac