I need ur help....
Posted: Wed Feb 03, 2010 4:26 am
I have a form with 2 textboxs. with js handling
So According the above js, when user type some thing on text1 text box automatically update it to the text2 text box...
My question is how I handle this case by php..?
Code: Select all
<script type = "text/javascript">
function autofill(which) {
document.getElementById("text2").value = which;
}
</script>
<input type="text" name="text1" onblur="autofill(this.value)" />
<input type="text" name="text2" />My question is how I handle this case by php..?