Hi, my PHP countdown script counts down the number of days until a custom date, i have a problem though the number of days in the countdown only change after 12:00 in the afternoon, instead i want it to change at 12:00 midnight. Is it possible to do this?
Here is the code:
PHP Code:
<?php
// set the default timezone to use. Available since PHP 5.1
date_default_timezone_set('GMT');
$custom_date = strtotime('15 February 2009');
$now = time();
$timeleft = $custom_date-$now;
$daysleft = round((($timeleft/24)/60)/60); //probably...
echo "$daysleft days until New York trip";
?>
Bookmarks