Introduction to PHP form elements: selection field tags and text field tags

伊谢尔伦
Release: 2023-03-07 13:58:02
Original
2887 people have browsed it

Select field tags

A list can be created by selecting the field tags

The syntax format is as follows:

<select name="name" size="value" multiple>
<option value="value" selected>选项1</option>
<option value="value" >选项2</option>
<option value="value" >选项3</option>
.......
<select>
Copy after login

The parameter name represents the name of the selection field; the parameter size represents the number of rows in the list; the parameter value represents the menu option value; the parameter multiple represents the display of data in menu mode , the data is displayed in list mode by default.

The display methods and examples of the selection field tags and

Form

consists of form elements. Commonly used form elements include the following tags: input field tags , selection field tags

The above is the detailed content of Introduction to PHP form elements: selection field tags and text field tags. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template