Hello.
I have working javascript that checks form fields to ensure the user enters value in each field.
My code used to be this (with the java working):
<form name="form1" action="appReceive.asp" method="post">
I then changed this line to post submitted info to a .php file as below, and now the javascript seems to be disabled, the form works but the JS does not seem to be working at all, all because of the one line that i changed, heres what i changed it to:
<form action="http://www.website.com/form/redirect.php" method="post">
Can anyone tell me how to get my JS back and working with my php page?