Accessing Hotmail/Yahoo or any other mail from Gmail Account

This tutorial might be very useful if you are a traveler and have more than one account in different domain servers. Signing out and signing in again consumes your valuable time. However, you may have the habit of collecting all the mails from different servers at one place using Outlook Express, Mozilla Thunderbird, or other third-party email clients.But if you are trying to read all mails in one account away from your desktop or in public computer then you’ll need to setup whole email client again. This may make your emails insecure, especially in public computers and again wastes your valuable time.However, hotmail supports email...

Exporting command prompt results in text files

When you input a command in Command Prompt, the output is displayed just below the input in the command prompt window. This is the fact that we all know about. But for some commands, the output can be several pages long, causing you to scroll to view all of the output and harder to find the thing you are searching for.But with this simple trick, you can get rid of such long listing outputs. For example, when listing directory (However, you can input dir /p/w for page wise view) of folder which has large numbers of files and folders. You may need it in a separate text file to search for the specific files or folders.To export all the...

Google’s Instant result about FIFA World Cup

Google has always been mysterious. In this Football Festival, Google supports instant result about FIFA world cup results, highlights and time schedule in your local time.When you search for “FIFA World Cup “ (without quotes) in Google, it will instantly list the results with systematic table about the previous match and upcomming match, along with wins, draws, loose and points.Also you can view the time schedule for specific match by using following keyword, “FIFA World Cup Brazil Vs North Korea”.  It will list up the time schedule for the match in your local time. Also it will show the link to view overview of both the...

Blogger Template Designer Finally Out of Beta

Finally, Blogger released Template designer tool out from blogger in draft. Previously user need to login in through blogger in draft to utilize this tool. However it was still in beta mode.Today Blogger now finally released it to stability. User's will be welcomed with popup message about the New Template Designer.When you click on Design link you'll be welcomed to Layout page. At the secondary horizontal bar you can see Template Designer link.This new blogger template designer allows you to update and preview changes live in your blog.You can have numbers of option to change the template, layout, background image, fonts, CSS styles,...

Creating awesome jQuery menu for your website or blog

Interactive animations makes your website much user friendly and enjoyable. Previously flash used to be the only means of animated interactive contents. Now with release of AJAX and minimized javascript library, JQuery, we are able to create interactive pages without the need of flash. This time, I am here to present you the jQuery technique to create your own awesome animated navigation bar.First, we are creating simple unordered list with three menu items,<ul>        <li><a href="#">Item 1</a></li>        <li><a href="#">Item...

Background position plugin for jQuery

I am again up with short but new article. That is about jQuery's plugin, Background position plugin. jQuery is a great library for this type of task but out of the box, it can't animate background position properly because of the need to animate two values instead of just one (too bad not all browsers implemented the non-standard background-position-x and -y like Internet Explorer).This plugins the ability to do background-position animations to jQuery 1.2, and later versions.$('#background').animate({backgroundPosition: '150px 250px'});Download the plugin from here, http://plugins.jquery.com/files/jquery.backgroundPosition.js_7.txt...

Facebook Updated it’s privacy policy settings

Facebook again has updated it's privacy policy settings. They've built one simple control to set who can see the content you post. In a couple of clicks, you can set the content you've posted to be open to everyone, friends of your friends or just your friends.This control will also apply to settings in new products they launch going forward. So if you decide to share your content with friends only, then they'll set future settings to friends only as well. This means you won't have to worry about new settings in the future.They've reduced the amount of basic information that must be visible to everyone and they are removing the...

Basic tutorial to interact between MySQL and PHP

 MySQL database is most popular database used in internet. Today I am going to show you how to create a mySQL database using PHP script.To create a new database, we’ll be using the following syntax here;CREATE DATABASE database_nameBut, we must use the mysql_query() function to execute the above command. This mysql_query() function is used to send a query to a MySQL connection.After we have base commands ready, we can arrange it to access and create your new MySQL database.Before we proceed further, you must keep in mind that you must have your webhost supporting at least one MySQL database connection...

Creating your own WordPress like blog using PHP & MySQL- Basic

Today in my blockbuster tutorial, I am going to teach you how to create your own dynamic (Content management system) blog website.Before beginning, let me tell you the basic skills  you’ll need:CSSJavaScript (optional)PHPMySQLHTMLLet’s categorize the jobs to be done to make perfect, or at least, good CMS.Basic layout of your siteAppropriate modules to divide the layoutUsing PHP to access MySQL.After following this tutorial you’ll be able to:Create a main blog page;A page with list of blog contents;create dynamically generated contents.Create a basic layout for your blog using HTML programming language. You may use Dreamweaver...