🎴 Flashcard Mode
Web Services and PHP Fundamentals
Card1 / 15
Mastered0
Review0
QuestionClick to flip
This array contains query parameters.
AnswerClick to flip back
A
$_GET
💡 Explanation:
$_GET is the PHP superglobal array that contains query parameters passed through the URL after the ? character. The other options are wrong - $_POST (not $_POSTS) contains POST request data, and $_GETS doesn't exist as a PHP superglobal. Query parameters in URLs are automatically parsed into $_GET.