I need the unix timestamp - the timestamp i have. Then display the time between like on twitter.
+2
A:
Not sure what language you need it, but if it will end up in a web page, you may try timeago
(http://timeago.yarp.com/)
pgb
2010-05-12 19:36:56
+3
A:
If you have the difference called diff:
$seconds = intval($diff) % 60;
$minutes = intval($diff/60) % 60;
$hours = intval($diff/3600) % 24;
$days = intval($diff/(3600*24));
Is this what you want ?
nc3b
2010-05-12 19:41:30