Hi,
Currently, I use this line:
<form method="POST" action="d.php" onSubmit="if(this.submitted) return false; else
{this.submitted=true; return true;}">
to prevent users to send multiple forms upon multiple clicks on the submit button.
This works, but not all the time..
Is there a better way to achieve what I need?
(I also tried the onclick event to disable the submit button when clicked, but it doesnt work well for what I do)
Thanks!