Various examples of how to parse HTML forms
This article mainly uses various examples to help you understand how to use the HTML form form, and explains how the form form interacts with the user. Interested friends can refer to
九A simple example analyzes the use of HTML form form for your reference. The specific content is as follows
1 form form tag
How does the website interact with users? The answer is to use HTML forms. The form can transmit the data entered by the viewer to the server, so that the server-side program can process the data passed by the form.
Grammar:
•
.•action: The place where the data entered by the viewer is sent, such as a PHP page (save.php).
•method: The method of data transmission (get/post).
All form controls (text boxes, text fields, buttons, radio boxes, check boxes, etc.) must be placed between the
tags (otherwise the information entered by the user can Submission cannot be made to the server!).The difference between method:post/get This part is a matter for back-end programmers to consider. Interested friends can check the wiki of this section, which has detailed introduction.
XML/HTML CodeCopy content to clipboard
<form method="post" action="save.php"> <label for="username">用户名:</label> <input type="text" name="username" /> <label for="pass">密码:</label> <input type="password" name="pass" /> </form>
2 input/text/password text and password input box
When users want to type letters, numbers, etc. in the form, the text input box is used. The text box can also be converted into a password input box.
Syntax:
##XML/HTML CodeCopy content to the clipboard
<form> <input type="text/password" name="名称" value="文本" /> </form>
When type="password”, the input box is a password input box.
name: Name the text box for use by the background programs ASP and PHP.
value: Set the default value for the text input box. (Generally used as a prompt)
XML/HTML CodeCopy content to the clipboard
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>文本输入框、密码输入框</title> </head> <body> <form method="post" action="save.php"> 账户:<input type="text" name="myName" /><br><br> 密码:<input type="password" name="pass" /> </form> </body> </html>
Syntax:

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.
