Desperately need help with PHP for a contact form - I just cannot get this right!
Hi guys
I'm a total noob and have spent an incredible amount of time (to no avail) trying to get the contact form I have on my website working.
I downloaded a website template and understand that I require a send_email.php page but cannot get it working!
Here is the code for the html part of my website where the contact form resides
HTML
…………………………………………………………………………………………………………………………………………………….
<form action="send_email.php" method="post">
<fieldset>
<p><input type="text" value="" placeholder="NAME" class="field"></p>
<p><input type="email" value="" placeholder="EMAIL" class="field"></p>
<p><input type="text" value="" placeholder="TITLE" class="field"></p>
<p><textarea cols="2" rows="2" placeholder="MESSAGE"></textarea></p>
<p><input type="submit" value="send" class="button"></p>
</fieldset>
</form>
…………………………………………………………………………………………………………………………………………………….
Can anyone provide me with what I would require for send_email.php to get this working?