I have a data table... It displays date and time from saved mysql data. I need "time alert/countdown" before 60 min in this time. my code is...
can anybody tell me ?
Code:
<td>
<?php echo date("d-m-Y", strtotime($row['date'])); ?>
</td>
<td>
<?php echo date('H:i', strtotime($row['time'])); ?>
</td>
<td>
<php time alert/countdown code here >
</td>
Comment