I’m not a programmer and I’m trying to alter an opensource Ajax contact form.
The email message which is to be sent from the form is not including all the fields of the contact form; only the first and the last. (first_name & themessage)
This is send.php
Dreamweaver highlights the first and last fields correctly, but those in the middle are not highlighted, indicating there is a coding problem (which I can’t see).
Why aren’t all the $POST variables being sent via email?
You have several instances of
$POSTwhich should instead be$_POST.