Showing posts with label web designing. Show all posts
Showing posts with label web designing. Show all posts

Sunday, July 22, 2012

How to get traffic on your website (by search engines)


How to get traffic on your website (by search engines) 
If you want to know how to get traffic on your website by google, then i would prefer reading previous articles on BCT first then the last thing which was left in SEO course was that put relevant material on your website, the more the content the higher the chances of your page on google, first you want to have good quality backlinks and a sitemap, which you can create in many sources, and next tutorial will be also of how to create a sitemap, submit sitemap in google and then have patience or contact me naveenjain@programmer.net after that the only thing you need is to get some traffic from any other site, but remember if your site has google adsense in it, please do not use this site - Easyhitsforyou or if you have no alternate sources of traffic then register a domain here dot.tk and then share it on this site- Easyhitsforyou you will get too many traffic as well as income from it. 



Thanks

BCT admin

Sunday, July 15, 2012

Bad way to doing link exchange

If you want to build backlink then you are going to link exchange with many websites, right.... Watch these steps carefully -
1. The site you are sharing link with should have more unique visitors than yours.
2. It should not be a linkfarm(A SITE USED ONLY FOR PLACING LINKS OR STUFF LIKE THAT)
3. The site you are sharing link with should have more backlinks which will in turn get you to more backlinks access

Saturday, July 14, 2012

How to check which meta keywords to be used?

If you have used meta tags or are going to use them then please read this tutorial.
First of all go to https://adwords.google.com/o/Targeting/Explorer?__c=1000000000&__u=1000000000&ideaRequestType=KEYWORD_IDEAS to check which keywords will give you more traffic by less work and competition. You will also know how many people do monthly search of the particular keyword, now select the keywords with less competition and then apply them on your blog.
This will make google on your blog or website to active search.
Next thing you are going to do is that http://tools.seobook.com/keyword-tools/seobook/ and now sign-up here and check your email, you will get a confirmation code and now you can access the site and now enter your keywords and it will search all search engines daily searches, now you are ready.
Place all your kywords in it and enjoy..
If any problems then pm me - naveenjain@programmer.net
Please notice that we have deleted our facebook page and my facebook account, sorry for that.

How to get your site on top of google?

Hey guyz,
if you want traffic on your site then you would like to have your site in top of google-like search engine, and by getting this you are accessible to 1000000+ people on the web per month.
You can get inbound links (someone having a blog or website put your link on his/her site). if you get more  inbound links then google will get it on top. just mail me naveenjain@programmer.net and post your site there, 1 inbound link is guarenteed.

Thanks, not forget to put my blog link on your site.

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.

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>

Tuesday, May 15, 2012

Get free web hosting

You can get free hosting from any site but i recommend this site 000webhost.com
 -

This site has lots of features like - upload  more than  1 GB space and it will increase as you increase your points, 500 templates, easy to use, point system (no need to spend money for many features), and lots more its free.Hurry join the site.

Wednesday, April 25, 2012

How to create a guestbook showing the contents

First of all you need to create a index.php file and a database of 4 columns which are -
1.id (BIGINT)(index = primary) AUTO INCREMENT = true
2.name (VARCHAR 250 characters)
3.message (VARCHAR 250 characters)
4.email (VARCHAR 250 characters)
Then in index.php file write the following codes to show the guestbook-


<!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>Guestbook - home</title>
</head>
<body>
<?php
// echo all the database data
require ("connect.php");
$q = mysql_query("SELECT * FROM guestbook ORDER by id desc");
$num = mysql_num_rows ($q);
if ($q > 0){
while ($data = mysql_fetch_assoc ($q)){
$name = $data['name'];
$message = $data['message'];
$email = $data['email'];
echo "<div style='background-color:yellow'>$name says <br> $message. <a href='mailto:$email'>Mail $name</a>. <a href='report.php'>Report spam and delete</a></div><hr />";
}

}

?>
</body>
</html>



Now create connect.php file with following code-

<?php
mysql_connect ('localhost','root','naveen');
mysql_select_db ('tutorials');

?>
Now insert anything in database and you can see it working.