PHP - Superglobals and Web Context
Identify the error in this PHP form handling snippet:
<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$email = $_POST['email'];
}
echo "Email: $email";
?>