FORMS:   

Text Entry Fields allow the User to enter text. For instance, if you we're doing a survey, you could give the user the option of entering his or her name. This would require a text entry field. The following example shows the coding of a text entry field within the Form. It also has a hidden field and a password field.

<form method="post" action="http://wwwebworks.biz/bit112/showFormData.php" name="initial">

<input  type="text" name="persons_name" size="40" maxlength="40" />

<input type="hidden" name="recipient" value="ian" />

<input type="password" name="password" size="40" maxlength="40" />

</form>

Click on the links above for further information.

 

Application: Add all three types of text entry fields. In the text and password fields change the size to 35 and the                     maxlength to 45. In the hidden field place your own email address inthe value subsection.
Example
: Form with 'text', 'hidden' and 'password' Fields.