More clarity on the GET and POST method?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

More clarity on the GET and POST method??

HTML5

22nd Mar 2018, 7:04 PM
Stephen O. Roy
Stephen O. Roy - avatar
3 Answers
+ 5
HTTP POST requests supply additional data from the client (browser) to the server in the message body. In contrast, GET requests include all required data in the URL. Forms in HTML can use either method by specifying method="POST" or method="GET" (default) in the <form> element. The method specified determines how form data is submitted to the server. When the method is GET, all form data is encoded into the URL, appended to the actionURL as query string parameters. With POST, form data appears within the message body of the HTTP request.
22nd Mar 2018, 7:08 PM
Baraa AB
Baraa AB - avatar
+ 5
Welcome bro.. glad to help you..
22nd Mar 2018, 7:34 PM
Baraa AB
Baraa AB - avatar
+ 1
Sure... Thanks
22nd Mar 2018, 7:34 PM
Stephen O. Roy
Stephen O. Roy - avatar