Ok..when a user presse s abutton to submit a form...whats the wya to disable that button once its pressed?? I see it on other sites alot...
You need to use Javascript, not PHP. Something like this:
<input type=button name="sbutton" onClick="javascript: document.forms['foo'].sbutton.disabled = true; document.forms['foo'].submit();">