Need to activate my Contact form by Correct code PLZ!
Hello , I have a Coming Soon Template Page it has XML file this is the code :
the form below.]]></contact_text>
<contact_fill1><![CDATA[Name]]></contact_fill1>
<contact_fill2><![CDATA[Email]]></contact_fill2>
<contact_fill3><![CDATA[Message]]></contact_fill3>
<contact_send><![CDATA[SUBMIT]]></contact_send>
<contact_clear><![CDATA[CLEAR]]></contact_clear>
<contact_error><![CDATA[Wrong email]]></contact_error>
<contact_success><![CDATA[Thank you!]]></contact_success>
</pages>
This is the last code of the XML file , When I press submit nothing goes to my inbox, The provider told me that I should make send.php code , I don't know how ,any help Please ?
Hi,
When you press Submit, the form data should be send to a php script (address set to "action" attribute in <form>).
The php script gets form data usually with $_POST, then uses a mail() function to send data to mail server.
So, you need to know php to make the contact form to work.
Try study the code of this script: Contact Form, PHP - AJAX.