Form Input HTML Tags in PHP

Q

What Are Form Input HTML Tags in PHP?

✍: 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.

 

Generating a Form in PHP

Creating a Web Form in PHP

Processing Web Forms in PHP

⇑⇑ PHP Tutorials

2016-11-17, 1621🔥, 0💬