i've seen this mentioned here a few times , ok its jsript , but i dont think
there is anyone here who doesnt use any jscript or even html ?? heh

basically all u do is disable the button once pressed

<script language="JavaScript"><!--
function Localize(pStr){return pStr;}
var ProcessingText = Localize("Processing....");
var cnt=0;
function doValidate(f){
f.BIN_button.value=ProcessingText;
f.BIN_button.disabled=true;
if (cnt==0)f.submit();
cnt++;
}
//--></script>

<input type="submit" value="Add Photos" name="BIN_button">

<form ***** onSubmit="doValidate(this);return false;">


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to