I try to take a date and do countdown untill that day like following:
The date i want to countdown to: 2016-05-1 00:00:00
Then i want to calculate the diff between the date and now so i can do countdown timer.
I have this:
date_default_timezone_set("Asia/Jerusalem");
if ($result = $db->query("SELECT TIMESTAMPDIFF(SECOND, NOW(), 2016-05-1 00:00:00)")) {
while($row = $result->fetch_array()) {
$currentTimeLeft= $row['TIMESTAMPDIFF(SECOND, NOW(), 2016-05-1 00:00:00)'];
}
echo json_encode($currentTimeLeft);
}
I dont understand why this returning empty. What is wrong here?