Q. Which superglobal variable is used to collect form data sent with the POST method?
β
Correct Answer: (A)
$_POST
Explanation: $_POST is used to collect form data sent via HTTP POST method. $_GET is for GET requests, $_REQUEST can hold both but is less secure, and $_FORM does not exist.