Creative, Informative and Entertaining Stuff for everyone

Monday February 6th 2012

Categories

Archives

Calender

February 2012
S M T W T F S
« Dec    
 1234
567891011
12131415161718
19202122232425
26272829  

Posts Tagged ‘date’

Calculate no of years,month,days,hours,minutes and seconds past since given date

function getYMDHMSPastFromTwoDate($startTimeStamp,$endTimeStamp) { $years = ''; $Month = ''; $Days = ''; $Hrs = ''; $Mins = ''; $totalSecs = ''; $timePastArr = array(); $date1 = $startTimeStamp; $date2 = $endTimeStamp; if($date1 > $date2) { $dateDiff = intval($date1 - $date2); } else { $dateDiff = intval($date2 - [...]

To check whether given date is less than current date

function IslessThanCurrentYear(year) { var d = new Date(); currentyear = d.getFullYear(); if (year>currentyear) { return false; } else { return true; } }