Current Assignment(s)
A4: Questionnaire
Due: Recommended by Monday, 5.28
Due: Recommended by Monday, 5.28
Name
<input type="..." name="..." id="..." />
Each form control requires a name=""
attribute. This information is sent as part of a “name:value” pair to the server.
For example, an input element with the name attribute set to “username” (i.e. name="username"
) might collect the data “Justine”, which would then be sent to the server as username:Justine
.
- Previous
- Next