The PHP superglobal used to collect form data sent via the POST method is ________.
- $_GET
- $_REQUEST
- $_POST
- $_SERVER
The PHP superglobal $_POST is used to collect form data sent via the POST method, allowing you to access form input data securely.
Loading...
Related Quiz
- Which of the following are common uses of break and continue in PHP loops?
- Which keyword is used in PHP to inherit a class?
- What keyword is used in PHP to access a global variable inside a function?
- To prevent session hijacking, it's a good practice to bind the session to the user's ________.
- In PHP, the option to prevent associative arrays from being converted into objects when encoding to JSON is ________.