Sori, yeah,
I used the below code in a HTML file, it wasn't the prob.
<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>
But i used the below in a PHP file:
<?
$email = $REQUEST['email'] ;
$message = $REQUEST['message'] ;
mail( "address@mail.com", "Feedback Results", "Message:$message", "From:$email" );
header( "Location: http://www.google.com/" );
?>
I had the "request" in small caps, and stupid i no, but i didn't realise that the "Feedback Results" was something i'd written.
In my defence lke i said first time using and i tend to run before i walk with these things, thus make silly oversites.