I am trying to add 55 minutes to a set time stored in the database. I am running an MySQL Query to get the time information. This is stored in the PHP Script as
$row['login_time']
.
If is getting stored in the database in the format like 2013-04-25 22:48:53 EDT.
I am trying to add 55 minutes to this time.
I have the following script but it is showing a value in 1969.
$seconds = 55 * 60;
echo date("Y-m-d H:i:s", $row['login_time'] + $seconds);