I brought a website template off line. i don't know if this is a php question or not but it came with a contact form that i have know idea how to edit it. here is the code please help i just want the message to go straight to my email when the user pushes send.
Thanks in advance i been online for hours trying to get help.
someone said put my email address in the action part of the script but that didnt work.
<h2>Contact Form</h2>
<div class="wrapper margin-bot">
<div class="col-3">
<div class<form id="contact-form" action="" method="post" enctype="multipart/form-data">
<fieldset>
<label><span class="text-form">Name:</span><input name="p1" type="text" /></label>
<label><span class="text-form">Email:</span><input name="p2" type="text" /></label>
<div class="wrapper"><div class="text-form">Message:</div><textarea></textarea></div>
<div class="buttons">
<a class="button-2" href="#" onClick="document.getElementById('contact-form').reset()">Clear</a>
<a class="button-2" href="#" onClick="document.getElementById('contact-form').submit()">Send</a>
</div>
</fieldset>
</form>
</div>