What Are Form Input HTML Tags

Q

What Are Form Input HTML Tags? - PHP Script Tips - Processing Web Forms

✍: FYIcenter.com

A

HTML tags that can be used in a form to collect input data are:

  • <SUBMIT ...> - Displayed as a button allow users to submit the form.
  • <INPUT TYPE=TEXT ...> - Displayed as an input field to take an input string.
  • <INPUT TYPE=RADIO ...> - Displayed as a radio button to take an input flag.
  • <INPUT TYPE=CHECKBOX ...> - Displayed as a checkbox button to take an input flag.
  • <SELECT ...> - Displayed as a dropdown list to take input selection.
  • <TEXTAREA ...> - Displayed as an input area to take a large amount of input text.

2007-04-23, 5199👍, 0💬