Multiple choice technology web technology

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

  1. Request.Form;

  2. Request.QueryString;

  3. Request_Get("");

  4. $GET[]
  5. $_GET[];
Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

PHP uses the $_GET[] superglobal array to retrieve data from forms submitted via the GET method. This is a built-in associative array that automatically contains all data sent through the URL query string. Option B uses ASP syntax, while option D is missing the underscore prefix.