I think the requested result is to keep them from sending information to the server a second time to keep the server load down. Although the duplicate post isn't entered it did use up some server time to figure that out.
This is rough but this is what I think would be needed:
Add this to the header insert include -
<script language=javascript>
var subonce = 1;
function doSub () {
if (subonce) {
subonce = 0;
document.replier.submit();
}
else {
alert('Please be patient... Thanks.');
return false;
}
}
</script>
Then replace your submit button type which should be labled "submit" with "button" and then add this to the same tag:
onClick="doSub()"
I think that should do it. I would have to actualy do it to see if it works though... lol I think it will []/forum/images/icons/wink.gif[/]