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;…