I'm stuck at something maybe easy but I cannot find an solution of it. I try to count how many minutes have past since the time() integer is saved. Now my function looks like:
if ($time < $time + 60 * 60 ) {
return ' not Older than 1 hour';
}
And I want something like:
if ($time < $time + 60 * 60 ) {
return '21 minutes old';
}