Vijaya Kumar Blog

(Stunning PHP/MYSQL/AJAX/SEO Tips)

5 Tips to create an excellent search engine optimized landing page

These days, landing pages are being used very frequently, even though they have evolved from the cheesy designs and glaring oddities. These days landing pages come with sexy designs and the best compelling copies, that can convince you in seconds. We’ve seen many good examples of modern, sleek looking landing pages, which are eye candies [...]

Use isset() Instead of strlen()

This is actually a neat trick. Here is the example: <?php if (isset($username[5])) { // The username is at least six characters long. } ?> When you treat strings as arrays, each character in the string is an element in the array. By determining whether a particular element exists, you can determine whether the string [...]

How to Increase the number of RSS subscribers overnight

No.This is not one of those cliche articles. And I’m not talking about getting subscribers by writing great content, or getting more links etc.. C’mon who doesn’t know those points? We are looking for something new. Right? I’m talking about that one trick that will increase your subscriber list atleast by 10% over night. Guaranteed. So you [...]

5 things you can do with the footer to leverage on SEO

So you know that footer text is a good real estate option in SEO. And you’ve been placing your sitemeter button and credit texts there. Some of you are clever I know, you have that “natural” looking two lines to text there with links to totally un related websites! Guess what, I have some better alternatives [...]

Remove other sites from the Google search results

Google has a new option for webmasters – that enables us to remove a particular information on a website from it’s search results. Vanessa Fox today released the Webpage removal toolthat will enable users to delete off indexed pages from your site on Google‘s index and also information/pages on other sites. The latter part is interesting – removing [...]

Redirecting from home page to post/pages error in WordPress 3.0 – [Solved]

Before a week, I upgraded my word press blog from version 2.8.4 to 3.0 versions. After upgrading, i faced some 301 redirection issues i.e., once I publish new post or page, home page will automatically redirects me from home page to new post/page. I Google around the websites for the solution nearly for 2 days. [...]

Shortcut the else in PHP

This tip accidentally stumbles upon a useful practice, which is to always initialize variables before you use them. Consider a conditional statement that determines whether a user is an administrator based on the username: <?php if (auth($username) == ‘admin’) { $admin = TRUE; } else { $admin = FALSE; } ?> This seems safe enough, [...]

Know the Difference Between Comparison Operators

This is a good tip, but it is missing a practical example that demonstrates when a non-strict comparison can cause problems. If you use strpos() to determine whether a substring exists within a string (it returns FALSE if the substring is not found), the results can be misleading: <?php $authors = ‘Vijay & Jana’; if (strpos($authors, ‘Vijay’)) [...]

Top 10 best easier CSS tips for web designers/developers must follow strictly

As with most things, a logical and structured approach is the best way to go. Therefore I have put together 10 quick tips (in no special order) to help make your CSS coding as pain-free as possible. 1. Keep it Simple This may sound obvious but if you find yourself using complicated coding to achieve your [...]

Best 8 upgrades in wordpress 3.0

There are some great new features coming, including custom post types, a new default theme, and a menu manager. Read on to find out what to expect in version three! 1. Choose your Username and Password You’ll encounter new features as soon as you start! Currently, when you first install WordPress, you are assigned a [...]

 

You need to log in to vote

The blog owner requires users to be logged in to be able to vote for this post.

Alternatively, if you do not have an account yet you can create one here.

Powered by Vote It Up