Hello all. Ill begin by saying that I am an absolute novice with php. I have just done my first "includes.php" in my web and all is well. Now... I have a contact form which was working fine but I wanted to have a thankyou message replace the contact box (rather than take me to a fresh page). I downloaded this http://www.visibilityinherit.com/code/jquery-ajaxsubmit.php and got the example to work fine. Mine comes back with only the original 2 fields the author included and blank. Heres the formmail.php code. <?php // Insert your email/web addresses and correct paths $mailto = 'hello@hmwebsolutions.co.uk' ; $from = "http://www.hmwebsolutions.co.uk" ; $formurl = "http://www.hmwebsolutions.co.uk/formmail.php" ; $errorurl = "http://www.hmwebsolutions.co.uk/error.php" ; $thankyouurl = "http://www.hmwebsolutions.co.uk/thankyou.php" ; // Place Your Form info here... $name = ($_POST['name']); $email = ($_POST['email']); $message= ($_POST['message']); // Check If Empty if (empty($name) || empty($email)) { header( "Location: $errorurl" ); exit ; } // Add more Validation/Cleaning here... // Place your Corresponding info here... $message = "Name: $name\n\n" . "Email: $email\n\n" ; // Leave Alone mail($mailto, $from, $message, "From: \"$name\" <$email>" . $headersep . "Reply-To: \"$name\" <$email>" . $headersep ); header( "Location: $thankyouurl" ); exit ; ?> Code (markup): Does anyone have any idea what Im dojng wrong? Thanks in advance. nathan