/    Sign up×
Community /Pin to ProfileBookmark

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.
[URL=”http://s1183.photobucket.com/albums/x464/snipes6/?action=view&current=contact.jpg”][/URL]
Below is my html code :

[code=html]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>[/code]

Thank you.

to post a comment
PHP

7 Comments(s)

Copy linkTweet thisAlerts:
@NoEffinWayApr 09.2012 — Google is your friend. This was already done, I just had to modify it slightly.
[code=php]<?
if(isset($_POST['submit'])){
////////////////////////////////////////
$to = "[email protected]"; #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: $fromrn";
$headers .= "Content-type: text/htmlrn";

mail($to, $subject, $message, $headers);

echo "Thank you for contacting us! We will respond as soon as possible.";
}
?>[/code]
Copy linkTweet thisAlerts:
@h0k1authorApr 10.2012 — Thank you heaps mate ?
Copy linkTweet thisAlerts:
@h0k1authorApr 10.2012 — Hey , sorry but this script doesnt work. When iclick submit it redirects to a blank page with the php script on it ???
Copy linkTweet thisAlerts:
@rstApr 11.2012 — 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
Copy linkTweet thisAlerts:
@mtrickApr 11.2012 — <?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'."rn";

$headers .= 'Content-type: text/html; charset=iso-8859-1'."rn";

$headers .= 'From: [email][email protected][/email]';

$to = '[email protected]'."rn";

$sub = 'Query from website';

mail($to, $sub, $message, $headers);

header("Location:thank-you.php");

}

?>
Copy linkTweet thisAlerts:
@jseanApr 11.2012 — <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&#37;" 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>&nbsp;</td>

<td>&nbsp;</td>

<td><input type="submit" name="Submit" value="Submit"> <input type="reset" name="Submit2" value="Reset"></td>

</tr>

</table>

</form>

</td>

</tr>

</table>
Copy linkTweet thisAlerts:
@brijeshmktApr 11.2012 — 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.
×

Success!

Help @h0k1 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...