The GET method passes a limited amount of informatoion publicly, meaning information
passed to the server will be viewable to anyone using the browser. This can create a security
risk if passwords are involved. The POST method typically is used to trigger a server
based action, and sensitive information is hidden from the user. the GET method will
display information from the request in the url while the url from a POST request will be
hidden. POST is used almost exclusively for handeling forms while GET requests are
used when asking for information from the server, such as a search engine request.
The POST method is mainly used when handeling forms, especailly when sensitive data or
sensitive user input is involved. The GET method is typically used in server requests,
such as search engine queries.