Airtel 3G latest hack for March April

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 2013
Naveen 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


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
2.)Real Name:- your real name is also needed to be send so that we can contact you online.
3.)Email address (Not needed if you are sending from permanent e-mail address)
4.)Phone number (Optional):- We can contact you at that time when we got the trick through the phone, so easy and simple.We may  give missed call or SMS or even call you to make aware you to check the mail.
5.) Blog or website (if you have):- We can link to your website then you will get a good  quality of traffic.


Risk Involved:-
I am not a cheater, that's why i would disclose the only risk i face:-The only risk is balance deduction if it does not work in your area, however, if it does not work, even then we will post your name on blog because of your good work. If I tell you to activate plan like of R. 9 then you are responsible for Rs. not me, but i will post your link and Facebook profile or fan page and everything.


Terms and conditions:-
You will be contacted through e-mail, if after 2 days, we don't get the reply, then either we will block you or contact you through phone SMS or call. and if we don't get response in 20 minutes then your membership will be violated. Every person will be treated equally, even me also, if I am wrong, you can correct me. If i don't respond without information, call me, i will within 20 minutes. If you found a trick that is working, you will specially given a post with your name and link and all the stuff you want.
If you say, it's working and i from anywhere got information that it's not working, then you can be asked for reasons or temporarily banned from getting any trick in advance. You can also tell your Facebook or twitter profile/page if you don't have blog.

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>