Login Register


Simple contact form filter_list
Author
Message
Simple contact form #1
Here is a tutorial I threw together quickly on how to code a simple PHP contact form for your website - thought it would be useful since most websites contain something like this.

contact.html
Code:
<form method="POST" action="process.php"> <input type="text" name="name" size="19" placeholder="Name"><br> <br> <input type="text" name="email" size="19" placeholder="Email"><br> <br> <textarea rows="9" name="message" cols="30" placeholder="Message"></textarea> <br> <br> <input type="submit" value="Submit" name="submit"> </form>

process.php
Code:
<?php if(isset($_POST['submit'])) { $to = "slim@thug.pw"; // your email for receiving submissions $subject = "You have a new submission"; // subject of the emails sent to you $name_field = $_POST['name']; // process name $email_field = $_POST['email']; // process email $message = $_POST['message']; // process message $body = "<strong>From:<strong> $name_field\n <strong>E-Mail:</strong> $email_field\n <strong>Message:<strong>\n $message"; // message format as it will be sent to you echo "Thank you for your submission! "; // success message mail($to, $subject, $body); } else { echo "There was an error, please try again!"; // error message } ?>

There you go, a fully-functional PHP contact form. Now you can go back and style the contact.html page to your liking.

Reply

RE: Simple contact form #2
Pretty useful indeed, thank you for sharing. I'm interested in advancing far in PHP to be honest. Smile

Reply

RE: Simple contact form #3
(05-14-2013, 02:55 PM)Combo Wrote: Pretty useful indeed, thank you for sharing. I'm interested in advancing far in PHP to be honest. Smile

Awesome, need any help then I am your guy. Even request some tutorials, if you wanted.

Reply

RE: Simple contact form #4
Thanks, Geo for this tutorial. Smile

Reply

RE: Simple contact form #5
Sweet tutorial, one I had been working on didnt work :\

Thanks!

Reply

RE: Simple contact form #6
Just tried this on my localhost and I'm now working on the CSS sides of things. Works like a charm. Biggrin

Reply

RE: Simple contact form #7
Thank you very much. Using this as a contact form on my websites that are for sale =)
[Image: HWV7adO.jpg]

Reply

RE: Simple contact form #8
Always love to see people using my tutorials, even better if you learn something from it. Any suggestions for more stuff?

Reply







Users browsing this thread: 1 Guest(s)