I need the unix timestamp - the timestamp i have. Then display the time between like on twitter.
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 ?