DAY 12 PHP PROGRAMMING

http://php.flashwebhost.com/tom/day_12_ex_3.html

Code:
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Contact Us</title>
</head>
<body>


<form action="day_12_ex_3.php" method="POST">
    Email<br>
    <input type="text" name="fromEmail"><br>
    Message<br>
    <textarea name="body" cols="30" rows="10"></textarea>
    <br>
    <button type="submit" name="submit" value="submit">Send Mail</button>
</form>


</body>
</html>