Accrual to Clinical Trials
Space shortcuts
Space Tools

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
languagexml
titleExample User Reg HTML
linenumberstrue
<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 usernameemail, 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.