GET is for data retrieval only. You can clarify what you are getting, but this is a read-only setting, and yes, since you mentioned that everything that is used for clarification is part of the URL.
POST is designed to send data, but it’s usually a way to “break up” the simple operation of HTML, since you can’t guarantee anything that happens, it can simply retrieve data, send data, or delete data.
There are also PUT and DELETE in the HTML standards, but this is all about finding web servers that also support these actions. Because names imply that PUT sends data to create or update, while DELETE is designed to delete data.
Enjoy! :)
source share