Here is my html code:
<form id="myForm" action="" method="post">
<fieldset>
<legend>Contact Me</legend>
<label for="emailName">Name:</label>
<input name="emailName" type="text" id="emailName" value="" />
<label for="emailFrom">Email:</label>
<input name="emailFrom" type="text" id="emailFrom" value="" />
<label for="emailMessage">Message:</label>
<textarea name="emailMessage" cols="30" rows="9" id="emailMessage"></textarea>
<button type="submit" id="submit">Send</button>
<input type="hidden" name="submitted" id="submitted" value="true" />
<div id="loadingImage"></div>
</fieldset>
</form>
Here is the PHP code:
<?php
$name = $_REQUEST['name'] ;
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
mail( "mailto:example@example.com", "Feedback Form Results",
$message, "From: $email" );
header( "Location: http://www.example.com" );
?>
I am getting emails, which is more than I was getting yesterday BUT the mail comes with no message and the sender is "Nobody"...
I am very new to PHP (as you can tell)
Thanks in advance