Question:How can the index.php script access the email form element of the following HTML form? (Choose 2)
<form action="index.php" method="post"> <input type="text" name="email"/> </form>
A $_GET['email']
B $_POST['email']
C $_SESSION['text’]
D $_REQUEST['email']
E $_POST['text']
+ AnswerB D
+ Explanation
+ Report