What does "Post " and "Get" method do in html forms?? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
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 Respostas
+ 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