Reaper1242
Well-Known Member
- Joined
- Jan 1, 2009
- Messages
- 455
- Reaction score
- 45
Hey guys,
I'm hoping someone can help me here. I'm building a site based on an HTML 5 template. I'm still trying to figure out PHP though. I'm really more of a visual person so this whole coding thing just hurts my brain
.
The template has the contact form set up perfectly but there's no mailer. I'd really appreciate it if someone could tell me how to add a mailer based on this form.
Thanks in advance.
I'm hoping someone can help me here. I'm building a site based on an HTML 5 template. I'm still trying to figure out PHP though. I'm really more of a visual person so this whole coding thing just hurts my brain
The template has the contact form set up perfectly but there's no mailer. I'd really appreciate it if someone could tell me how to add a mailer based on this form.
Thanks in advance.
HTML:
<form action="#" method="post">
<p><input type="text" name="name" value="Your Name" id="name" onblur="if (this.value == ''){this.value = 'Your Name'; }" onfocus="if (this.value == 'Your Name') {this.value = '';}" /></p>
<p><input type="text" name="email" value="Your Email" id="email" onblur="if (this.value == ''){this.value = 'Your Email'; }" onfocus="if (this.value == 'Your Email') {this.value = '';}" /></p>
<p>
<textarea cols="20" rows="7" name="message" id="message" onblur="if (this.value == ''){this.value = 'Your Message'; }" onfocus="if (this.value == 'Your Message') {this.value = '';}" >Your Message</textarea>
</p>
<p><input type="submit" name="submit" value="Send Message" class="button" /></p>
</form>