πŸ“Š PHP
Q. Which superglobal variable is used to collect form data sent with the POST method?
  • (A) $_POST
  • (B) $_GET
  • (C) $_REQUEST
  • (D) $_FORM
πŸ’¬ Discuss
βœ… 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.

Explanation by: Rati Dubey
$_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.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
48
Total Visits
πŸ“½οΈ
6 mo ago
Published
πŸŽ–οΈ
Rati Dubey
Publisher
πŸ“ˆ
83%
Success Rate