Home »
MCQs »
PHP MCQs
Which PHP global variable is used to collect form data after submitting an HTML form with method='post'?
126. Which PHP global variable is used to collect form data after submitting an HTML form with method="post"?
- $_GET
- $_REQUEST
- $_POST
- $_ENV
Answer: C) $_POST
Explanation:
The PHP global variable $_POST is used to collect form data after submitting an HTML form with method="post".