Forms are enclosed by html tags <form></form>
If you create two forms you can cut and paste both into one html page. You can do this as many times as you want. The only problems is to avoid confusion for your visitors.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
the form1 file can be renamed anything you want, or it can be cut and pasted into another html file. The one thing that must be kept unique to each form is the process.php file.
If you will have multiple forms with anything different, the process.php files will have to be kept separate. Name the first one process1.php and change the form1.html line to "<form action=process1.php ..."
Next form, rename the form1.html to form2.html, change the "<form action=process2.php ..." in the new form2.html. Rename the process.php to process2.php.
Do this as many times as you like.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Does anyone know how I would put more than one form on a website?
Forms are enclosed by html tags <form></form>
If you create two forms you can cut and paste both into one html page. You can do this as many times as you want. The only problems is to avoid confusion for your visitors.
What if I create an application form and then want to have a contact form on another page. Where do I put the form1 files? Can I rename them?
the form1 file can be renamed anything you want, or it can be cut and pasted into another html file. The one thing that must be kept unique to each form is the process.php file.
If you will have multiple forms with anything different, the process.php files will have to be kept separate. Name the first one process1.php and change the form1.html line to "<form action=process1.php ..."
Next form, rename the form1.html to form2.html, change the "<form action=process2.php ..." in the new form2.html. Rename the process.php to process2.php.
Do this as many times as you like.