Email But No Content

Hi,

I have the following code which sends an email to me however it does not send through the contect I am entering on the form. Can anyone advise why please?

$emailfrom = "****";
$emailto = "****";
$subject = "****";
$name = Trim(stripslashes($_POST['name']));
$email = Trim(stripslashes($_POST['email']));
$message = Trim(stripslashes($_POST['message']));

// validation
$validationOK=true;
if (!$validationOK) {
  print "<meta http-equiv=\\"refresh\\" content=\\"0;URL=error.htm\\">";
  exit;
}

// prepare email body text
$body = "";
$body .= "isbn: ";
$body .= $isbn;
$body .= "\
";
$body .= "isbn1: ";
$body .= $isbn1;
$body .= "\
";
$body .= "isbn2: ";
$body .= $isbn2;
$body .= "\
";


// send email
$success = mail($emailto, $subject, $body, "From: <$emailfrom>");

// redirect to success page
if ($success){
  print "<meta http-equiv=\\"refresh\\" content=\\"0;URL=isbnsent.php\\">";
}
else{
  print "<meta http-equiv=\\"refresh\\" content=\\"0;URL=index.php\\">";
}
?>
	<form  name="loginForm"  method="post" action="/isbnengine.php">
				<ul >
<div class="homepagesubmitwrapper">
<div id="contact-area">
<div class="homepageisbnsubmitwrapper">
<div class="homepageisbnwrapper">
ISBN:
</div>
<div class="homepageisbninsertwrapper">
<input type="text" name="isbn" id="isbn" /></text>
</div>
</div>
<div class="homepageisbnsubmitwrapper">
<div class="homepageisbnwrapper">
ISBN:
</div>
<div class="homepageisbninsertwrapper">
<input type="text" name="isbn1" id="isbn1" /></text>
</div>
</div>
<div class="homepageisbnsubmitwrapper">
<div class="homepageisbnwrapper">
ISBN:
</div>
<div class="homepageisbninsertwrapper">
<input type="text" name="isbn2" id="isbn3" /></text>
</div>
</div>
<div class="homepageisbnsubmitwrapper">
<div class="homepageisbnwrapper">
ISBN:
</div>
<div class="homepageisbninsertwrapper">
<input type="text" name="isbn4" id="isbn4" /></text>
</div>
</div>
<div class="homepageisbnsubmitwrapper">
<div class="homepageisbnwrapper">
ISBN:
</div>
<div class="homepageisbninsertwrapper">
<input type="text" name="isbn5" id="isbn5" /></text>
</div>
</div>
<div class="homepageisbnsubmitwrapper">
<div class="homepageisbnwrapper">
ISBN:
</div>
<div class="homepageisbninsertwrapper">
<input type="text" name="isbn6" id="isbn6" /></text>
</div>
</div>
<div class="homepageisbnsubmitwrapper">
<div class="homepageisbnwrapper">
ISBN:
</div>
<div class="homepageisbninsertwrapper">
<input type="text" name="isbn7" id="isbn7" /></text>
</div>
</div>
</div>
</div>
							<div class="user-area">
 <input type="submit" value="Submit" class="submit-button" />
		</div>	
 	</ul>
        </form>

Where’s the HTTP POST data for ‘name’, ‘email’, and ‘message’ coming from? Also, I think you’re assuming that register_globals is enabled because you have not assigned the HTTP POST data for the ISBN numbers to their respective variables in the $body variable assignment ($isbn, $isbn1, $isbn2). You may also want to look over your HTML code again; it seems a little malformed (random closing text tags).