- Output for 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
- form.php <!DOCTYPE html> <html> <head> <title>Registration Form</title> </head> <body> <h2>User Registration</h2> <form method="POST" action="form.php"> Name: <input type="text" name="name"><br><br> Email: <input type="email" name="email"><br><br> Phone: <input type="text" name="phone"><br><br> <input type="submit" name="submit" value="Submit"> </form> </body> </html>