Refinance now before rates go up! Get multiple rate quotes at GetMyLender.com.

Difference between GET and POST Methods

In this article, we will discuss about difference between GET and POST Methods. So that it will usefull in your apllications.

GET Method ():

1) Data is appended to the URL.
2) Data is not secret.
3) It is a single call system.
4) Maximum data that can be sent is 256.
5) Data transmission is faster.
6) this is the default method for many browsers.

POST Method ():

1) Data is not appended to the URL.
2) Data is Secret.
3) it is a two call system.
4) There is no Limit on the amount of data. That is characters any amount of data can be sent.
5) Data transmission is comparatively slow.
6) No default and should be explicitly specified.

Conclusion :

I hope that this article would have helped you in understanding Difference between GET and POST Methods. Your feedback and constructive contributions are always welcome.


No comments:

Post a Comment