Kod:
<SCRIPT LANGUAGE="JavaScript">
<!--
function disableForm(theform) {
if (document.all || document.getElementById) {
for (i = 0; i < theform.length; i++) {
var tempobj = theform.elements[i];
if (tempobj.type.toLowerCase() == "submit" || tempobj.type.toLowerCase() == "reset")
tempobj.disabled = true;
}
return true;
}
else {
alert("Form gönderildi. Ama, tarayıcınız eski olduğundan dolayı buttonlar iptal edilemedi. Lütfen formu bir dah göndermeyiniz!");
return false;
}
}
-->
</script>
<form action="git.php" method="post" name="form1" onSubmit="return disableForm(this);">
.............
</form>
Bir aralar ben de aramıştım da buldum sonunda

Kolay gelsin...