I'm using php to send a form to my e-mail but I can't get it to work...I need some help please.
<?php
$name = $_REQUEST['Name'] ;
$email = $_REQUEST['Email'] ;
$how = $_REQUEST['how'] ;
$comment = $_REQUEST['comments'] ;
mail( "myemail@myemail.com", "Form",
$name, $email, $how, $comment );
header( "Location: http://www.myurl.com/thankyou.html" );
?>