GETPOST
GETPOST is a term used in web development to refer to a small input handling utility that retrieves parameters from HTTP requests. It is designed to provide a single, unified way to access data sent to a web application via either the GET query string or the POST request body, with the goal of simplifying input handling and promoting consistent validation.
In typical implementations, GETPOST accepts the name of a request parameter and may also support optional defaults
History and usage contexts: The concept originated in early PHP-based CMS and framework code as a convenience
Security and design considerations: While GETPOST can simplify code and reduce boilerplate, it can obscure whether
See also: GET, POST, REQUEST, input filtering, superglobals.