Archive for October, 2009

How to buy a reliable web hosting?

Finding a reliable web hosting is a hard thing nowadays. Because many hosting providers offers with N GB number of disk space and N X N number of bandwidth even some hosting providers offers Unlimited disk space with unlimited traffic. But quality?, it’s the big question, so that we need to concentrate on few more [...]

Some Important JavaScript Functions

pop()
This array function is to remove the last element of an array, similarly push() can be used to insert an element.
Example:
var countries = Array(”India”,”America”,”Japan”,”China”);
countries.pop();
window.reload()
This function is used to reload the current browser window.
random()
This function is used to generate a random number. This function will return a random number (fractional) between 0 and 1. This will [...]

MySQL Storage Engines

MySQL has the following storage engines or table types:

MyISAM
InnoDB
HEAP
MERGE
CSV
BLACKHOL

Out of these all mysql storage engines, two engines are most important & these are used by developers frequently as well.
The first one is InnoDB mysql engine; it supports transaction and table locking. And another one is ‘MyISAM’, it supports full text search support using this we [...]