I have a Jquery countdown until a weekly event. The event is at 7:00 pm US Central time every sunday. I generate the countdown in php. I am looking for a way to set the countdown to display the next event a week later an hour after the current event.
Example:
The event is every Sunday at 7:00 PM CST and last an hour.
If you look at the site at 6:00 PM on Sunday, it should start the countdown for an hour. (00:01:00:00) If you look at the site at 7:00 PM - 8:00 PM on Sunday, it will show 0. (00:00:00:00) If you look at the event at 9:00 PM on Sunday, it will show 6days 22hrs 0min 0sec (06:22:00:00)
I have the code to show the countdown for a date and time I enter, but I want this to happen without changing the code every week.
<?php
$rem = strtotime('2012-09-02 19:00:00') - time();
$day1 = floor($rem / 86400);
$hr1 = floor(($rem % 86400) / 3600);
$min1 = floor(($rem % 3600) / 60);
$sec1 = ($rem % 60);
$day = sprintf('%02d',$day1);
$hr = sprintf('%02d',$hr1);
$min = sprintf('%02d',$min1);
$sec = sprintf('%02d',$sec1);
echo "$day:";
echo "$hr:";
echo "$min:";
echo "$sec"; ?>
Any ideas?
DateTimeobjects will save you a WHOLE lot of headache. – Madara Uchiha Sep 2 '12 at 19:58