What do you mean by 'getting an echo back'? Do you mean, after I press the 'OK' button, something should show up at the bottom of the form? If that's the case, the answer's no. I did not get (see) any echo at the bottom of the form after attempting to send an email.
Also, I have already exported it and put the folder on my server (the php form is in the main index.html folder). So the website's up and running, except for the email function.
Can some please look at teh code in the pictures I posted... The problem has to lie in the code.
In the php file, it says...
<?php
$to = $_POST['email_to'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$headers = 'From: webmasterebj@example.com' . "\r\n" .
'Reply-To: webmasterebj@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
echo "Message sent at ";
echo date ("h:i:s");
?>
What am I supposed to change, or should I just leave it?