

Never try to lose dear one who really care you because you may never get back mirror once it is dropped……
I would like to wish the Hindus World Over and my well wishers a Happy and Prosperous Bada Dashin-2066…(Happy Vijaya Dashami)
The age of a domain name plays a great role while ranking a website and Google considers it to be a measuring tool to authenticate a website. If a domain is 19 years old and has a good PR, it attracts more traffic and is worth more as well. The age of the domain name can be considered as an element of trust that helps the site to rank well with the search engines. Trust is built with time and Google considers the site to be more legitimate than a spam site if it has spent more time on the web.
Web masters who have been on the internet for a while knows that it is vital to remain alive in order to keep the flow of targeted traffic to your website. This helps to gain confidence and credibility with the search engines again and again. Some SEO experts are of the opinion that Google’s indexing and ranking algorithms give preference to the age of your domain and it acts as an age filtering function. Google loves Read more…
PHP Tag Engine is a PHP library that allows you to easily add tagging to a PHP application. There is a back-end class and AJAX request handler, and a full AJAX front end interface. ADOdb is used as the database abstraction layer and PHP Tag Engine is tested on MySQL, PostgreSQL and MS SQL Server.
PHP Tag Engine was developed to add tagging to Tasks Pro™ and Tasks™. You can see it in action online in the Tasks Pro™ and Tasks™ online demos.
There is a Trac web site for this project, which includes a wiki, ticket system and SVN repository.
The following are 5 clear, concise, and relevant tips that you should know when using jQuery in your WordPress Theme or Plugin.
1. Use wp_enqueue_script()
The traditional way to include jQuery in an HTML page is with the script tag. When working with WordPress, you should *never* do this. To avoid conflicts and other potential problems, you’ll want to load jQuery using the following code:
function my_init() {
if (!is_admin()) {
wp_enqueue_script('jquery');
}
}
add_action('init', 'my_init');
Read more…
Two ways to hide posts from certain categories to be displayed on the blog. You can either put this code inside the loop
<?php
if ( have_posts() ) : query_posts($query_string .’&cat=-1,-2′); while ( have_posts() ) : the_post();
?>
or you can use Advanced Category Excluder.
Dagfinn has a post looking at using the new closure feature of PHP 5.3. He compares using foreach for iteration versus array_map. “Interesting,” he concludes, “but not necessarily better than conventional alternatives.”
I agree for that case. Consider instead, a more complicated operation that requires a setup and a tear down after. Read more…
It’s an easy to get the IP address for a domain name using PHP’s gethostbyname() and gethostbynamel() functions. Here in this post looks at some examples of using the gethostbyname() function in PHP to get a single IP address for a hostname.
Example domains used
Examples in this post use www.cnn.com and www.electrictoolbox.com. At the time of the writing of this post, www.cnn.com resolves to 4 possible IP addresses as follows: Read more…
The robots.txt file is a text file that has specific instructions for search engine robots about specific content that they are not allowed to index. These instructions tells search engine about which pages of a website should be indexed. The address of the robots.txt file is: www.yoursitename.com/robots.txt .
By Default, every robots at first searches for robots.txt file. It then follows the file for indexing the site content.
Any robots.txt file must contain two fields User-agent and Disallow. Read more…
“Highest paying search keywords” wonder why people are paying such a high price for keywords in advertisement. As i browse and search from net what i found is “mesothelioma”, the highest paying ads till now. People are paying US$ 84 for “mesothelioma”.
Read more…
No need to mention CSS is awesome. Here one line css magic. Its pure beauty of CSS that gives life to the website and makes it lively. Yes, it’s not simple to write CSS for newbie and even professionals sometimes gets stuck because of cross browser issues. Sometimes, One line in CSS can be more than a magic providing solutions. I reviewed some of the CSS files and came up with some one line CSS.
Below are list of one line CSS. One line CSS mentioned below may or may validate web standards and web accessibility rules. Read more…