HTML question detail
What is the difference between `GET` and `POST` forms?
GET appends data to the URL and is suitable for search/filter actions. POST sends data in the request body and is used for create/update operations.
Sensitive data should never be sent via query string.