Home
> HTML Questions
> What is the difference between GET and POST methods?
What is the difference between GET and POST methods?
Answer:
GET and POST method is used to transfer data from client to server in HTTP protocol. 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 server in http protocol. Example of GET and POST methods