The $_GET superglobal in PHP is an associative array.

  • TRUE
  • FALSE
The statement is true. In PHP, the $_GET superglobal is indeed an associative array. It contains key-value pairs where the keys represent the parameters or names of the variables passed through the URL's query string, and the corresponding values are the data associated with those keys. You can access this data using the $_GET['parameter'] syntax, where 'parameter' is the name of the key. Learn more: https://www.php.net/manual/en/reserved.variables.get.php
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *