+ 1
can one explan work this three tag (method,div,span)??
3 Antworten
+ 2
Taken directly from w3schools
HTML <form> method Attribute
❮ HTML <form> tag
Example
Submit a form using the "get" method:
<formaction="/action_page.php"method="get">
First name: <inputtype="text" name="fname"><br>
Last name: <inputtype="text" name="lname"><br>
<input type="submit"value="Submit">
</form>
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The method attribute specifies how to send form-data (the form-data is sent to the page specified in the action attribute).
The form-data can be sent as URL variables (with method="get") or as HTTP post transaction (with method="post").
Notes on GET:
Appends form-data into the URL in name/value pairsThe length of a URL is limited (about 3000 characters)Never use GET to send sensitive data! (will be visible in the URL)Useful for form submissions where a user want to bookmark the resultGET is better for non-secure data, like query strings in Google
Notes on POST:
Appends form-data inside the body of the HTTP request (data is not shown is in URL)Has no size limitationsForm submissions with POST cannot be bookmarked
+ 1
<div> is a block tag and or <span> inline tag
+ 1
Robert Brown Farley (brofarops) thanks for answer :)