Hi,
I'm new to this and have a quick question.
I have a form called register.html and have javascript to check the form validation
<form
<input type="submit" value="Submit" onClick="return formValidate()">
</form>
so in register.html when user presses submit the formValidate method (javascript) is run.
once it returns true, how do i pass the variables from the form into a php page?
i know i can change onClick="data.php" but then the JS is not being run ...
Thanks