Multiple choice technology web 2.0

How do you get information from a form that is submitted using the "get" method?

  1. $_GET[];
  2. Request.QueryString;

  3. Request.Form;

  4. $_POST[];
Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In PHP, the superglobal array $_GET is used to collect value data sent via an HTTP GET request. $_POST is for POST requests, while Request.QueryString and Request.Form belong to classic ASP / .NET syntax rather than PHP.