I need to calc and show the minutes between 2-time stamp. the first -> last login to the database. the second -> current login (now). lastTime - is the date-time of the last login - example - 2021-06-25 13:01:26
this is my code
<?php
session_start();
if (isset($_SESSION['pname']) && isset($_SESSION['fname']))
{
$first = $_SESSION['pname'];
$last = $_SESSION['fname'];
$lastTime = $_SESSION['lastTime'];
}
?>