Add Thumbnail Image to the WordPress RSS Feeds

inorder to put thumbnails to your rss feeds to grab more user attention here is a simple solution you can adopt to your wordpress site. so, lets do this in simple as step by step 1. download timthumb.php and place it in your current theme folder and create a “cache” folder in current theme folder ( make sure you have give .. .. ..

Created By : admin

Auto reSizing Iframe height in the Page

if you are working with iframes then definitely you might experience the auto height resizing problem. for all of you here is a simplest tutorial which will solve the iframe resize problem on the fly. the problem : lets  say,   we have    two  pages    parent  page  and  child  page.   you want to  load    child  page  in the  parent  page  in .. .. ..

Created By : admin

GET THE DATABASE SIZE in Mysql

run the below query you can get the data base size in mysql. if you run the query which is given below in mysql query browser then you will get the two columns first will display the data base name and the second will display the data base size in mb. select table_schema "data base name", sum( data_length + index_length ) / 1024 / 1024 "data base size in mb" from information_schema.tables group .. .. ..

Created By : admin

InitCaps function using Javascript and Regular Expressions

simply  convert  your text to initcaps  dynamically  using  javascript. here is a function which makes your life easier to convert  text  to initcaps using javascript. 1 2 3 4 5 6 7 8 function initcaps( s ) { // the following regex replace will identify first character from the word and makes it to uppercase and remaining text to lower .. .. ..

Created By : admin

Microsoft’s Internet Explorer Fall From 60 to 40 percent – Stat Counter

Microsoft’s Internet Explorer Fall From 60 to 40 percent  – Stat Counter

from last two years, internet browser war was an interesting topic, and the war war consistent between internet explorer and firefox until the launch of google’s chrome. now it is war of triangle. according to statcounter’s(a leading web statistics company) global stats report, microsoft ie fell to 49.87% in september followed by firefox with 31.5%. google’s chrome .. .. ..

Created By : admin

India is at Third Place – Opera Mobile Web Report August 2010

India is at Third Place –  Opera Mobile Web Report August 2010

in august 2010 opera mini was used by 66.5 million users, an increase of 6.8 % and 108 % unique users, when compared with the month of july. as per opera mobile web report (mwr) august 2010, opera mini browser is extremely popular in india which stands at the top 3rd position. the top 5 countries that use the mobile opera mini browser are indonesia, russia, india, china and the .. .. ..

Created By : admin

Query Parameter using Javascript Regular Expression

friends, this post will help you out grabbing query string parameters using javascript. unlike all other posts this post will do this functionality using regular expressions. the advantage of doing this by regular expression fast. read the rest of this entry .. .. ..

Created By : admin

Only Domain Name from URL using Regular Expression

dear friends, as php 5.3.x is released and you will be aware of the truth that ereg() regular expression functions are deprecated from the latest versions i.e no more usage of ereg() so,  keep this  in mind not to use of  ereg()  from today onwards    this  effects  most of the  popular  cms   i,e  drupal,  joomla so,  before you upgrade your  php version on your .. .. ..

Created By : admin

How to Insert Flash File into Header of Your WordPress?

How to Insert Flash File into Header of Your WordPress?

most of weblog owners are keen  to insert  flash file into header of the blog or wordpress website. here is the simplest tutorial  to replace your  header image file  into  flash file in your wordpress website or blog. 1. take a sample page of your wordpress blog or website  by  browsing into any one of the page,   take the source of the page  and  copy it and  name it as  .. .. ..

Created By : admin