ok ive done the validation..... is there a way i can get a value thats in javascript into a php var.....i want to get the value that goes into obj2 into a php var......is it possible?
Code:
<script>
function CopyValue(obj1, obj2)
{
var visibleField = obj1;
obj2.value = visibleField.value;
}
</script>
Comment