Redirecting to Another Page After PHP Form Submission
When working with PHP forms, it is often necessary to redirect users to a different page after the form is submitted. This can be done by using HTTP headers.
In the provided PHP code, the user is submitting a form with various personal details. The code validates the input, prepares an email message with the form data, and sends it to a specified email address. However, the code does not include any logic for redirecting the user to a different page after the form submission.
To redirect the user, we can add the following line of code right after the @mail() function:
<code class="php">header('Location: nextpage.php');</code>
This header tells the browser to redirect the user to the nextpage.php file.
It is important to note that the code should not echo any text before the header() function is called. Any text output will interfere with the redirect and result in an error.
Once the redirect header is sent, the PHP script will automatically send the user to the specified page. This allows you to display a confirmation message or provide additional information on the next page, ensuring a smooth user experience after form submission.
The above is the detailed content of How do I redirect users to another page after a PHP form submission?. For more information, please follow other related articles on the PHP Chinese website!