Someone should please explain the GET and POST method in html forms | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Someone should please explain the GET and POST method in html forms

28th Apr 2018, 11:56 AM
Level
Level - avatar
2 Answers
+ 4
GET and POST method used as a method for sending data from client to server or vice versa. POST mostly used to send sensitive data such password and email.
28th Apr 2018, 12:24 PM
Amethyst Animion
Amethyst Animion - avatar
0
To extend JFS nice and short explanation. When you use the GET method in an HTML form the content of your variables will be stored in the URL. Some points to consider when using GET - Security: Everybody sees exactly what Data was send. In addition, no encription is possible. - Data limit: There is a hard cap of how much data can be send. + Repeatability: The user can copy, share, bookmark and do whatever he wants with the page and the form data will be kept. When you are choosing to use POST or GET always prefer POST. Use GET only when you need it for the specific use case in your application. Like using a GET transmitted ID for showing a profile page.
30th Apr 2018, 11:28 AM
Lukas Weber
Lukas Weber - avatar