Problem: I have made a form to email processor, and it hasn't been seeming to work. Although, when I hit the submit button, it does direct the user to the page that I set it to go to after submitted.
Hosting: Right now, I am using Award Space. I was thinking maybe my form wasn't working because of the hosting, but when I tried my form on pay-hosting, it still didn't work.
THE CODE
<html>
<title>PIREP</title>
<form method="post" action="pirep.php">
Account Name: <input name="account" type="text" /><br><br>
Email: <input name="email" type="text"><br><br>
Flight Call Sign: <input name="Callsign" type="text"><br><br>
Total Flight Time: <input name="time" type="text" value="0hours 0minutes"><br>
<br><INPUT type="submit" " value="Submit PIREP">
</form>
</html>
PROCESSOR BELOW
<?php
$account = $REQUEST['account'] ;
$email = $REQUEST['email'] ;
$Callsign = $REQUEST['Callsign'] ;
$time = $REQUEST['time'] ;
mail( "rdiddie7@yahoo.com", "Sign Up: Pilot Tracker",
$message, "From: $email" );
header( "Location: thankyou.html" );
?>
QUESTION: HELP ME!