Tuesday, June 26, 2012

How to put meta tags in your blog

Putting meta tags in your blog 
If you are a blogger and want to put SEO or meta tags in it and if you are using blogger.com as your blog platform then you would need to replace  <b:include data='blog' name='all-head-content'/> to meta tags, as described in last tutorial. Note that only putting meta tags would not help you a lot in SEO, but you will also need backlinks for your blog like:- by posting in forums, get 1 backlink for free by doing link exchange with us.
Note:- At last don't forget to submit your blog to a site like  - google.com/addurl

Monday, June 25, 2012

SEO tips

SEO tips -

Include meta tags on your <head></head> tags.
Like this - <meta name="description" content="Enter your site description here" />
AND <meta name="keywords" content="Enter your keywords seperated by comma" />

Make your Main keywords in your blog to Italics or bold like -
Best computer tutorials for free, Best computer tricks


Include Alt tag for every image-
<img src="google.jpg" alt="Google" />

Get inbound links to your site-
You can get 1 inbound link from my blog just go to Bloggers page follow instruction and get 1 inbound link, you can get more by posting to forums, answers and much more.

More important get text/HTML ratio to 30% or more
You should have more text than html to increase your keyword density.

Have XML Sitemaps for your website-
XML sitemaps lists the URL's for a site. You can include additional information such as frequency of changes and when the last update was. This allows search engine to crawl site more intelligently. You can use  Google sitemap generator to generate an XML or python sitemap for your website.

Have less Load time-
Your site must have less load time, if you don't have such website then use this tool - Page-speed (Free tool) to evaluate and improve your website speed. 


Less flash materials should be used
You can use flash as some specific enhancements, but it is better to avoid a full flash website.

Submit your website to a directory website
Submit your website to a directory website like www.dmoz.org. Submitting site to directory site would definitely increase site ranking.

Monday, June 18, 2012

How to start earning money online?

If you want to earn money online then you would surely choose the easiest way, the easiest way to earn money online is through clixsense - http://tinyurl.com/naveenjain Register here, if you have not registered yet.
Now click on View Ads (probably the easiest way) List of Ads would  be available to you. Click on any ad-   Then a new tab will open, click on Cat image there. Then wait for 3 seconds,if it give $0.001, wait for 30 seconds,if it give $0.01, wait for 60 seconds, if it give $0.02,  If you have clicked all the ads then complete tasks,offers or surveys, play clixgrid, you could win upto $5 using it.  If you have more queries, then comment here.

How to earn money online

There are many people who want to earn money online, but don't know which site to be preferred, shouldthey choost PTC (Paid to Click advertisings), PTR (Paid to read) or any others. I strongly recommend choosing PTC sites like - http://tinyurl.com/naveenjain 



Sunday, June 10, 2012

php basics - echo


This is a good tutorial for basic php. This tells about a function echo.
<?php
echo "";

?>
"" can contain string and will show correct value, whereas '' will show string name, and use \n to leave ' or ".

Thursday, June 7, 2012

How to create a contact me form in php


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>