Form Email Help - Review this code please

I have this form, fill out the fields online, submit it, and it is received via email. These issue I am having is that the First_Name Field always comes though with no data / text in the email. The rest of the fields work as they should. Please review and help. The actual email address has been replaced for review. Thanks in advance

<?php @$pfw_ip= $_SERVER['REMOTE_ADDR']; @$Full_Service_Move = addslashes($_POST['Full_Service_Move']); @$LoadUnload = addslashes($_POST['Load/Unload']); @$Packing_Help = addslashes($_POST['Packing_Help']); @$Furniture_Pick_Up = addslashes($_POST['Furniture_Pick_Up']); @$Moving_Out = addslashes($_POST['Moving_Out']); @$First_Name = addslashes($_POST['First_Name']); @$Telephone = addslashes($_POST['Telephone']); @$City_State = addslashes($_POST['City_State']); @$Date = addslashes($_POST['Date']); @$select = addslashes($_POST['select']); @$select2 = addslashes($_POST['select2']); @$select3 = addslashes($_POST['select3']); // Validation //Sending Email to form owner $pfw_header = "From: [email protected]\n" . "Reply-To: [email protected]\n"; $pfw_subject = "New Response Form"; $pfw_email_to = "[email protected]"; $pfw_email_r= "[email protected]"; $pfw_message = "Visitor's IP: $pfw_ip\n" . "Form Data\n" . "Full_Service_Move: $Full_Service_Move\n" . "LoadUnload: $LoadUnload\n" . "Packing_Help: $Packing_Help\n" . "Furniture_Pick_Up: $Furniture_Pick_Up\n" . "Moving_Out: $Moving_Out\n" . "First_Name: $First_Name\n" . "Telephone: $Telephone\n" . "City_State: $City_State\n" . "Date: $Date\n" . "Time: $select select2 select3\n" . "\n" . "--- End of Form Data\n" . "\n"; @mail($pfw_email_to, $pfw_subject ,$pfw_message ,$pfw_header ) ; @mail($pfw_email_r, $pfw_subject ,$pfw_message ,$pfw_header ) ; ?>

Hi,

Check First_Name input name in your HTML form which post this value name of input filed may be not matched.

Sponsor our Newsletter | Privacy Policy | Terms of Service