You can use the method below to prevent duplicate form submission or form re-submission using PHP. This method is simple to implement and does not require JavaScript.
Posted on 01 February 2012.
You can use the method below to prevent duplicate form submission or form re-submission using PHP. This method is simple to implement and does not require JavaScript.
Posted in PHPComments (0)
Posted on 17 June 2011.
Posted in JavaScript - Ajax, ProgrammingComments (0)
Posted on 28 December 2010.
<form name=”newsletter-form” id=”newsletter-form” method=”post”>
<input id=”email” name=”email” placeholder=”insert email” type=”text”/>
<button type=”submit”>NEWSLETTER</button>
</form>
$(“#email”).val(”);
Posted in JavaScript - AjaxComments (0)
Posted on 16 November 2010.
[ad code=1]
<script type=”text/javascript”>
document.forms.loginForm.kt_login_user.focus()
</script>
Posted in JavaScript - AjaxComments (0)
Posted on 03 November 2010.

Most of the form fields available with HTML are straightforward and easy for people to understand and use. But there is one exception. The select multiple. While useful and necessary, the select multiple form field has always been a usability challenge.
Posted in JavaScript - AjaxComments (1)
Posted on 16 July 2008.
The simplest way is to use an image as a submit button employing the <INPUT> HTML form tag.
<INPUT TYPE="IMAGE" SRC="butup.gif" ALT="Submit button">
Posted in HTML - XHTML, JavaScript - Ajax, ProgrammingComments (0)
