Dostum ekletirken direk time(); fonksiyonu ile eklet.
Bu fonksiyonu fonksiyon dosyana kaydet

function humanTime($timestamp){

$difference = time() - $timestamp;
$periods = array("saniye", "dakika", "saat", "gün", "hafta",
"ay", "yıl", "on yıl");
$lengths = array("60","60","24","7","4.35","12","10");

if ($difference > 0) { // this was in the past
$ending = "önce";
} else { // this was in the future
$difference = -$difference;
$ending = "yazıldı";
}
for($j = 0; $difference >= $lengths[$j]; $j++)
$difference /= $lengths[$j];
$difference = round($difference);
if($difference != 1) $periods[$j].= "";
$text = "$difference $periods[$j] $ending";
return $text;
}


Listeletirken
echo humantime($row['zaman']);
gibi listeletebilirsin