What does "Post " and "Get" method do in html forms?? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

What does "Post " and "Get" method do in html forms??

<form method= "post" >

20th Oct 2017, 1:47 PM
Divyanka Garg
Divyanka Garg - avatar
3 Antworten
+ 4
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").
21st Oct 2017, 3:41 AM
Talluri Saisumanth
Talluri Saisumanth - avatar
+ 3
Notes on GET: Appends form-data into the URL in name/value pairs The 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 result GET 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 limitations Form submissions with POST cannot be bookmarked
20th Oct 2017, 1:48 PM
ihateonions
+ 2
basically by GET you can see something like that for example http://www.domain.com/index.php?user=Garg
20th Oct 2017, 2:12 PM
Daniel
Daniel - avatar