prevent double-click form submit
this handy little snippet will prevent your users from double-clicking a form submission. its quick its easy, and ALL websites should have it. imagine the processing that goes on due to a double clicker who double click's EVERYTHING!
onclick="this.disabled=true;this.form.submit();"
drop that in the end of your submit button.
here is the full code (be sure to put this in between
tags:type="submit"
value="Submit"
onclick="this.disabled=true,this.form.submit();" />

