Category archive

Uncategorized

Explore every article in Uncategorized, with preserved WordPress-friendly URLs.

17 articles

Uncategorized

unicode issue in Perl CGI

When some special character(or other language data) is displayed as ‘? ? ? ? ?’ in browser, then you have to make the following change. 1.In your table set the collation of the field that is to be displayed as “Binary”. If this does not work then you can try the below option in your […]

Aug 29, 2008

Read article

Uncategorized

To calculate date difference between two given dates

function timeDifference(startDate,endDate) { date1 = startDate; date2 = endDate; laterdate = date1.split(“-“); laterY=laterdate[0]; laterM=laterdate[1]; laterD=laterdate[2]; earlierdate = date2.split(“-“); earlierY=earlierdate[0]; earlierM=earlierdate[1]; earlierD=earlierdate[2]; var laterdate = new Date(laterY,laterM,

Mar 26, 2008

Read article