Hello,
I have created 3 long forms and I would like to change some of the fields to make them NOT required fields and would also like to change some of the fiel names so that when we get the form results we will know what the response is all about.
I have figured out how to edit the look of the form using an HTML editor, but can't seem to change the background stuff.
I need to have this form done this afternoon. Can anyone help? I would really appreciate it!!
cindy@duaneforrest.com
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
I have created 3 long forms and I would like to change some of the fields to make them NOT required fields and would also like to change some of the fiel names so that when we get the form results we will know what the response is all about.
I have figured out how to edit the look of the form using an HTML editor, but can't seem to change the background stuff.
I need to have this form done this afternoon. Can anyone help? I would really appreciate it!!
cindy@duaneforrest.com
Go to your process.php file and edit out the variables you don't want to check. The line lookes something like this:
if($Name=="" || $EmailAddress=="" || $Comment=="" ){$errors=1;
So if I did not want to make the Comment required I would do this (only modify variables inside the curved brackets, the || means "or"):
if($Name=="" || $EmailAddress=="" ){$errors=1;
Next edit your form1.html and remove the * near and "required" field. That should do it.