HTML form
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:
Note:
1. 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 may not be submitted to the server!).2. Method: The difference between 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.