You can use the $_POST superglobal in PHP to get data sent in the URL's query string.

  • TRUE
  • FALSE
The statement is false. The $_POST superglobal is specifically used to collect form data submitted via the POST method, and it does not retrieve data from the URL's query string. To access data in the query string, the $_GET superglobal is used. The $_GET superglobal retrieves data sent in the URL's query string using the GET method. Learn more: https://www.php.net/manual/en/reserved.variables.post.php, 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 *