Cheers for the replies:
Managed to get the form to send but it's now blank apart from the email!!

___________________________________________________________________________________________________________
<form method="post" action="sendmail.php">
<table cellspacing="0" cellpadding="0" class="form">
<tr>
<td style="width:198px; height:128px">
<table cellspacing="0" cellpadding="0">
<tr>
<td style="width:198px; height:27px"><input name="name" type="text" value="your name:"></td>
</tr>
<tr>
<td style="width:198px; height:27px"><input name="company" type="text" value="your company:"></td>
</tr>
<tr>
<td style="width:198px; height:27px"><input name="telephone" type="text" value="telephone:"></td>
</tr>
<tr>
<td style="width:198px; height:27px"><input name="email" type="text" value="e-mail:"></td>
</tr>
</table> </td>
<td style="width:202px; height:128px">
<table cellspacing="0" cellpadding="0">
<tr>
<td style="width:202px; height:109px">message:<textarea name="textarea" cols="0" rows="0"></textarea></td>
</tr>
<tr>
<td style="width:202px; height:19px">
<br style="line-height:1px">
<img src="images/spacer.gif" alt="" width="116" height="1"><input type="submit" />
____________________________________________________________________________
That's the form element.
____________________________________________________________________________
This is the PHP element:
<?php
$name = $_REQUEST['name'] ;
$company = $_REQUEST['company'] ;
$telephone = $_REQUEST['telephone'] ;
$email = $_REQUEST['email'] ;
$textarea = $_REQUEST['textarea'] ;
mail( "****@hotmail.com", "Feedback",
$message, "From: $email" );
header( "Location: thankyou.html" );
?>
What's going wrong now?