I know that the way most people treat multiple forms on one page is to have each form post to another PHP file where the form is validated, its information is entered into a database or an email is sent off. So you usually have something like this:
That work great, but why would you create all those extra files when you can just have the form post to the same file and create multiple functions to process your multiple forms.
The solution is very simple and super efficient.
First, lets create some forms.
Now lets put some PHP code before the <head>
tag to have different processes for each form.
Now all you need to do is create your processes within those two “if” statements and each form will be dealt with accordingly when it it filled and submitted.