0
{HTML} GET and POST
please explain to me the difference between GET and POST in Html form ?
3 ответов
+ 13
If you are working with form and user input, then definitely go for Post, because it won't show the submitted data (like email, password etc.) in URL as Maruthi MB explained. In other cases, use Get.
+ 1
Using method ="GET" in form tag will show the submitted data in the url
Using method ="POST" in form tag will posts the submitted data and it will not be visible in url
0
But how to chose the right one ? I mean
when to use "GET" and when to use "POST" ?