How to submit PHP contact form to an email

Hi, so i have done a few tutorials in making a contact form. But the important part is missing, how do i submit it to an email ? The php form code i made is as below:

<!DOCTYPE HTML>
<html>
<head>
<style>
.error {color: #FF0000;}
</style>
</head>
<body>

<?php
// define variables and set to empty values
$nameErr = $emailErr = $genderErr = $websiteErr = "";
$name = $email = $gender = $comment = $website = "";

if ($_SERVER["REQUEST_METHOD"] == "POST") {
if (empty($_POST["name"])) {...

How to submit PHP contact form to an email

from PHP http://ift.tt/1syyqwP
via IFTTT
Previous
Next Post »
Thanks for your comment