Hey there,
I have a simple question: I want to calculate the Years, Months, Days and so on from an amount of seconds. What I do is something like this:
$date1= mktime ("13", "34", "19", "02", "17", "1995");
$date2 = mktime ("13", "34", "20", "02", "17", "2002");
$dif = $date1 - $date2;
So now I want to have a function that I will give $dif and it will return me something like an array with Years, Months, Days...
Is that possible???
Thx for your help!