The $_GET superglobal in PHP is often used to collect data sent in the URL's query string.

  • TRUE
  • FALSE
The statement is true. The $_GET superglobal in PHP is commonly used to collect data sent in the URL's query string. This includes parameters or values passed through the URL, such as search queries, page identifiers, or filter criteria. By retrieving data from the query string using $_GET, you can dynamically generate content, perform searches, or filter data based on user input. However, it is not used to collect data sent via the POST method from a form. 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 *