Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have coded a simple PHP Countdown Timer using this code:

list($date,$time)=explode(" ",$compounddate);
list($thour,$tminute,$tsecond)=explode(":",$time);
list($tyear,$tmonth,$tday)=explode(":",$date);
$date=str_replace(":","/",$date);
$target = mktime($thour,$tminute,$tsecond,$tmonth,$tday,$tyear) ;

$today = time () ;

$difference =($target-$today) ;

$days = floor(abs($difference/86400));

$hours = floor(abs($difference%86400/3600));

$minutes =floor(abs($difference%3600/60));

$seconds = floor(abs($difference%60));

$date = date("F d, Y ",strtotime($date));
$time = date("g:i:s A",strtotime($time));
$past_future="";
$boolpast_future=true;
if($difference<0) {
$past_future="<strong> Time since ".$date." at ".$time.": </strong>";
$boolpast_future=false;
}
else {
$past_future="<strong> Countdown to ".$date." at ".$time.": </strong>";
$boolpast_future=true;
}
}

($thour, $tminute, etc mean target hour, target minute...)
However, this code does not calculate the countdown time properly. How to fix this? Thanks!

share|improve this question
Have you examined it yourself or you're just waiting before someone will do your work? – zerkms May 17 '11 at 3:00
1  
Format your code properly (indents). – dkamins May 17 '11 at 3:02

1 Answer

up vote 0 down vote accepted
date_default_timezone_set('Asia/Tokyo');

$target = new DateTime('2011-06-01 05:00:00');
$now = new DateTime;
$diff = $target->diff($now);

if ($target > $now) {
    echo $diff->format('%a days, %h hours, %i minutes to go');
} else {
    echo $diff->format('%a days, %h hours, %i minutes too late');
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.