GET vs POST in Ajax
GET is designed for getting data from the server. POST (and lesser-known friends PUT and DELETE) are designed for modifying data on the server. A GET request should never cause data to be removed from an application. If you have a link you can click on with a GET to remove data, then Google spidering … Read more