Thala back in gautham vasudeva menons’s new film -Yennai Arindhaal Also starring Anushka,trisha Music- harris jayaraj
change the database engine of a MySQL database table?
Different databse engines can use for database tables. Database engines are different in architecture. Some occasions demands the db engine change of table. Usually tables are creating in MyISAM storage engine InnoDB is the another option.It has advantages over MyISAM. InnoDB gives more importance to relational schema. We can do it easily by mysql query Take…
kerala
Kerala – god’s own country is a traveler’s paradise in India. The small state, which represents just 1% of the land Mass, is considered to be one of India’s most beautiful state. It is the most sought after destinations of Asia. Kerala is a bustling little green and silver, coconuts and water state on the…
youtube video default image sizes
All YouTube videos have four default images. They have standard formats : http://img.youtube.com/vi/video-id/0.jpg http://img.youtube.com/vi/video-id/1.jpg http://img.youtube.com/vi/video-id/2.jpg http://img.youtube.com/vi/video-id/3.jpg 0.jpg in the list is a full size image and rest of them are thumbnail images( 1.jpg, 2.jpg, 3.jpg). Also have some additional sizes but the availability of following images are depends on the video. http://img.youtube.com/vi/video-id/default.jpg http://img.youtube.com/vi/video-id/hqdefault.jpg -high…
http to www redirect htaccess
use the following method to redirect the site with www RewriteEngine On RewriteCond %{HTTP_HOST} !^www. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]