-
Musisz pobrać datę:
$tm = mysql_query("SELECT timestamp AS t FROM logs ORDER by id ASC")->fetch_assoc()['t']; //obviously, check the size before you fetch
-
Prawdopodobnie chcesz użyć
strtotime()
więc na przykład:$dif = $cur_tm-strtotime($tm);
-
$dif
będzie w milisekundach. -
Co robisz z pętlami i tablicami? Zbyt mylące.