Our blog need some members for testing various tricks in different states, as i have got many comments that trick is not working in their area, so i need more member for my site. All the members will get every trick first and will also get their respective names on my blog. For being member on my blog http://bestcomputertutorials.blogspot.com, you need to send the following details to my e-mail nveenjain@gmail.com, the reason is also listed:-
Get every trick latest in advance by becoming a member of my blog.
Yes, you can be someone special,who get all ticks before audience, what you need to do is to follow some simple steps and terms and conditions, Click here to know more. Hurry, once all the state members are completed, this post will automatically be titled as Expired or Done. Last date will be posted before 30th May 2013Naveen jain
Showing posts with label contact me form. Show all posts
Showing posts with label contact me form. Show all posts
Saturday, 2 March 2013
Get every trick latest in advance, become a member of my blog.
Posted by Unknown on 16:12 with 2 comments
Our blog need some members for testing various tricks in different states, as i have got many comments that trick is not working in their area, so i need more member for my site. All the members will get every trick first and will also get their respective names on my blog. For being member on my blog http://bestcomputertutorials.blogspot.com, you need to send the following details to my e-mail nveenjain@gmail.com, the reason is also listed:-
1.)State:- It is most important as i will be able to tell users that it's working or not in the state
Risk Involved:-
Terms and conditions:-
Thursday, 7 June 2012
How to create a contact me form in php
Posted by Unknown on 17:50 with No comments
You not need to change the coding below, just change the value of $email to own email. This form will send you a email at $email(Value you fixed) address
<?php
error_reporting (E_ALL ^ E_NOTICE);
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Contact form</title>
</head>
<body>
<?php
if ($_POST['submit']){
$email = "admin@naveenjain.webatu.com"; // enter your own email
$n = $_POST['name'];
$e = $_POST['email'];
$t = $_POST['telephone'];
$c = $_POST['country'];
$ci = $_POST['city'];
$a = $_POST['address'];
$comment = $_POST['comment'];
if ($n){
if ($e){
if ($t){
if ($c){
if ($ci){
if ($a){
if ($comment){
$webmaster = "$email";
$headers = "From: $n<$webmaster>";
$subject = "Mail from contact form";
$message = "You have got a mail from $n.<h2>User's Details</h2> <br />User's email is $e. Telephone number is $t. Country is $c and city is $ci and address is $a. His comment was $comment";
if (mail($e, $subject, $message, $headers)){
echo "Your message has been sent";
}
else
echo "Sorry, the message could not be sent please try again after sometime";
}
else
echo "enter your comment";
}
else
echo "Enter your address";
}
else
echo "enter your city";
}
else
echo "enter your country";
}
else
echo "enter your telephone";
}
else
echo "enter your email";
}
else
echo "Enter your name";
}
else
echo "<form action='' method='post'>
<table>
<tr>
<td>Name</td>
<td><input type='text' name='name' /></td>
</tr>
<tr>
<td>Email</td>
<td><input type='text' name='email' /></td>
</tr>
<tr>
<td>Telephone</td>
<td><input type='tel' name='telephone' /></td>
</tr>
<tr>
<td>Country</td>
<td><input type='text' name='country' /></td>
</tr>
<tr>
<td>City</td>
<td><input type='text' name='city' /></td>
</tr>
<tr>
<td>Your address</td>
<td><textarea name='address'></textarea></td>
</tr>
<tr>
<td>Comment</td>
<td><textarea name='comment'></textarea></td>
</tr>
<tr>
<td></td>
<td><input type='submit' value='Send us query' name='submit' /></td>
</tr>
</table></form>";
?>
</body>
</html>
Subscribe to:
Posts (Atom)