HTTP Methods
All HTML topics∙ Chapter 91
HTTP Methods
Methods describe what you want to do. Forms mainly use GET and POST.
| Method | Typical use |
|---|---|
| GET | Fetch data / search (form values in URL) |
| POST | Create/submit data (form values in request body) |
| PUT | Replace an existing resource |
| PATCH | Update part of a resource |
| DELETE | Remove a resource |