Computer Science, asked by adhtithyan10, 1 year ago

differentiate between GET and POST method of sending data. ​

Answers

Answered by sanjanajaiswal634
0

Answer:

Explanation:

Both GET and POST method is used to transfer data from client to server in HTTP protocol but Main difference between POST and GET method is that GET carries request parameter appended in URL string while POST carries request parameter in message body which makes it more secure way of transferring data from client to.

Mark me as brainliest ...

Answered by Anonymous
0

Answer:

The GET Method

GET is used to request data from a specified resource.

GET is one of the most common HTTP methods.

POST is used to send data to a server to create/update a resource.

POST is one of the most common HTTP methods.

PUT is used to send data to a server to create/update a resource.

Similar questions