Page History
...
The following is HTML code for an example user registration form. The form submits three input fields username, email, and fullname to 'register.php' via the POST method. See the Registration Processor (PHP) page for details on how these parameters are captured and used.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<html> <head> <title>Example User Registration</title> </head> <body> Enter Your Information <form action="register.php" method="POST"> Username: <input type="text" name="username" value="zzz"/><br/> E-mail address: <input type="text" name="email" value="zSheep@example.org"/><br/> Full Name: <input type="text" name="fullname" value="Sheep Z"/> <input type="submit" value="Complete Registration"/> </form> </body> </html> |
The form submits three input fields username, email, and fullname to 'register.php' via the POST method. See the Registration Processor (PHP) page for details on how these parameters are captured and used.