GET vs POST Requests
Web Development
Do you get what you’re posting?
- GET/POST deal only with requests, not responses
- Think of the browser requesting the server
- GET reads the state of the server
- POST can modify the state of the server
- The response of GET/POST is all the same: they both can return HTML and modify a webpage