I have uploaded a php form that sends the information to email. When I press the submit button, the server says that do want to save the file. Please Help me in it.The codes are below:
<form method="post" action="sendmail.php">
Email: <input name="email" type="text" /><br />
Message:<br />
<textarea name="message" rows="15" cols="40">
</textarea><br />
<input type="submit" />
</form>
<?
$email = $REQUEST['email'] ;
$message = $REQUEST['message'] ;
mail( "yourname@example.com", "Feedback Form Results",
$message, "From: $email" );
header( "Location: http://www.example.com/thankyou.html" );
?>