I've ran a PHP contact form with multiple fields but it's only send 2 fields out of 14 fields, Name and Email fields is send but the rest of the fields don't send. How to send all fields from PHP contact form?
Apparently not all of your form fields are actually linked with it. Please show us what you've got there - without seeing the actual code we can only guess.
try this tips here http://forums.digitalpoint.com/showthread.php?t=1944126 Code (markup): If the form is passing data via POST foreach ( $_POST as $key => $val ){ $content .= $key." field has the value ".$val."<br>"; } Code (php): the variable $content will contain all your form values.