Monday, August 27, 2012

CSS: Do not break word, nobr tag equivalent

CSS: Do not break word when space character is encountered.

CSS property:
white-space: nowrap;

PS: The old way to achieve this was by using <nobr>, which is deprecated.

Sunday, August 26, 2012

MySQL: Change table type, set InnoDB or MyISAM

To modify the storage engine of a MySQL table, one can use one of the following.

ALTER TABLE `table_name` ENGINE = InnoDB;

OR

ALTER TABLE `table_name` ENGINE = MYISAM;