Multiple choice technology web 2.0 How do you get information from a form that is submitted using the "get" method? $_GET[]; Request.QueryString; Request.Form; $_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.