PHP Contact form
Hey Guys,,
I'm new to PHP and and contact forms, I'm in need of help for the current website I'm making for a local sporting community.
I have uploaded a current picture of what my contact us box (Name,Email,Message) looks like :
As you can see im using a CSS to position it and add the submit picture.If someone is able to develop a simple PHP script that suits the below form , it would be much appreciated.
Below is my html code :
HTML Code:
1.<div class="contact_form" > 2. <form id="form1" name="form1" method="post" action="send.php" > 3.4. <label> Name5. <span class="small" > Add your name</span> 6. </label> 7. <input type="text" name="Name" /> 8.9. <label> Email10. <span class="small" > Add a valid address</span> 11.12. </label> 13. <input type="text" name="Email" /> 14.15. <label> Message16. <span class="small" > Communicate with us</span> 17. </label> 18. <textarea name="Message" cols="0" rows="7" > 19.20. <button type="submit" name="submit" value="Submit" > Send Message</button> 21. </form>
Thank you.
Google is your friend. This was already done, I just had to modify it slightly.
PHP Code:
<? if(isset( $_POST [ 'submit' ])){ //////////////////////////////////////// $to = "your@email.com" ; #change me// //////////////////////////////////////// $from = $_POST [ 'Email' ]; $subject = "New email from the contact form." ; $msg = $_POST [ 'Message' ]; //begin message $message = " <html> <body> <table> <tr><td align='right'>From:</td><td> $from </td></tr> <tr><td align='center' colspan='2'> $msg </td></tr> </table> </body> </html> " ; //end message $headers = "From: $from \r\n" ; $headers .= "Content-type: text/html\r\n" ; mail ( $to , $subject , $message , $headers ); echo "Thank you for contacting us! We will respond as soon as possible." ; } ?>
Thank you heaps mate
Hey , sorry but this script doesnt work. When iclick submit it redirects to a blank page with the php script on it ???
if in page you see php codes your server's php settings is wrong
or maybe your mail settings are missing in php.ini
search jobs find jobs http://www.jobnak.com
<?php if(!empty($_POST['email']))
{
$message =
'<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<table><tr>
<td><strong>name</strong></td>
<td>'.$_POST["name"].'</td>
</tr>
<tr>
<td><strong>phone</strong></td>
<td>'.$_POST["phone"].'</td>
</tr>
<tr>
<td><strong>msg</strong></td>
<td>'.$_POST["msg"].'</td>
</tr>
<tr>
<td><strong>email</strong></td>
<td>'.$_POST["email"].'</td>
</tr>
</table>
</body>
</html>';
$headers = 'MIME-Version: 1.0'."\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1'."\r\n";
$headers .= 'From: mail@gmail.com ';
$to = 'shyam.kapisoor@gmail.com'."\r\n";
$sub = 'Query from website';
mail($to, $sub, $message, $headers);
header("Location:thank-you.php");
}
?>
<table width="400" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td><strong>Contact Form </strong></td>
</tr>
</table>
<table width="400" border="0" align="center" cellpadding="0" cellspacing="1">
<tr>
<td><form name="form1" method="post" action="send_contact.php">
<table width="100%" border="0" cellspacing="1" cellpadding="3">
<tr>
<td width="16%">Subject</td>
<td width="2%">:</td>
<td width="82%"><input name="subject" type="text" id="subject" size="50"></td>
</tr>
<tr>
<td>Detail</td>
<td>:</td>
<td><textarea name="detail" cols="50" rows="4" id="detail"></textarea></td>
</tr>
<tr>
<td>Name</td>
<td>:</td>
<td><input name="name" type="text" id="name" size="50"></td>
</tr>
<tr>
<td>Email</td>
<td>:</td>
<td><input name="customer_mail" type="text" id="customer_mail" size="50"></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><input type="submit" name="Submit" value="Submit"> <input type="reset" name="Submit2" value="Reset"></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
earch any value in an array
i am working at PHP training in ahmedabad . How to search any value in an array. I want to search the value is parent in an array or not.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules
Bookmarks