Which PHP superglobal array is used to collect form data sent via the GET method?
- $_GET
- $_POST
- $_REQUEST
- $_FORM
The $_GET superglobal array is used to collect form data sent via the GET method in PHP. It retrieves data from the URL's query string.
Loading...
Related Quiz
- A destructor in a PHP class is defined using the __destruct() method.
- Which of the following are true about the $_GET superglobal in PHP?
- Which of the following are valid ways to specify an integer in PHP?
- In PHP, an array can only hold values of the same data type.
- Which PHP function returns the square root of a number?