Jump to content

Reoccuring Countdown


SharkBait

Recommended Posts

Hi,

 

  Not sure how to go about this but I need to figure out how to get a countdown from a day and then make it reoccur.

 

Well the countdown part is simple enough from a particular date from now. This is my little function:

<?php
function CountDown($date) {
// Timestamp the inputed date
$countdown_date = strtotime($date);
//echo $date ."<br />";

// Get today's date
$today = time();

$difference = $countdown_date - $today;

if($difference <0) $difference = 0;

$days_left = floor($difference/60/60/24);

//echo "Countdown date ".date("F j, Y, g:i a",$countdown_date)."<br/>";

if($days_left == 0) {
	return "Already Started";
} else {
	return "Starts in {$days_left} days.";
}
}

?>

 

But I want to make a countdown that will start from Friday of the current week at 330pm from the time now.  What is the best way to go about this?

 

I assume there is a way to find out what ever friday from now on is and then just check to see if it is the current week or not?  I think I am making it sound more complicated than it is.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.