Sunday, 4 January 2015

Get Vs Post

These two methods used for requests responses between server and client.

Get:

In get we request data from a particular url or resource eg:mypage.php?variable=msg&varibale2=msg2  this method not useful when dealing with secure data

Post:

In post we submit data to specific resource or page,its more secure method than get it has no limit for data length.