vote up 2 vote down star

I am a complete newbie in PHP. I would like to show the number of days missing for a specific date. In other words, I want to display something like:

"X days to go for the great event"

using PHP and the server time.

How is this accomplished?

flag

74% accept rate

2 Answers

vote up 7 vote down check
<?php

$event_date = '2010-01-01 00:00:00';
$event_time = strtotime($event_date);
$diff = $event_time - time();
echo floor($diff/(24*60*60)).' days to go for the great event';

Note: I'm totally side stepping any timezone considerations, so, be sure you read up on timezone issues associated with using the PHP datetime functions.

link|flag
1  
Shouldn't it be ceil? If there are 12 hours until midnight of the day of the "great event", most people would consider that a day away. – Matthew Flaschen May 12 at 16:27
Thanks! I am a total newbie. Any good resource for the API? – Mario Ortegón May 12 at 16:27
X = full days until event, if he wanted to make it a little more complicated, he could set a conditional to detect when less than a day remains and echo out a different string. – jakemcgraw May 12 at 16:33
vote up 2 vote down

jakemcgraw's answer would have my vote, had I 15 rep. :)

You might want to use mktime() instead of strtotime(), though.

link|flag
There - got it! – jensgram May 12 at 16:27
1  
As for the API: See php.net/manual/en – jensgram May 12 at 16:30

Your Answer

Get an OpenID
or

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