How do I pick a date and start a cycle that will go through the year.
Let's say I name the days of the cycle:
$cycle = array('red', 'blue', 'green', 'yellow', 'black');
Then I pick a date, say January 29 to be the first day of the cycle. So it'll be something like:
Jan.29 - red
Jan.30 - blue
Jan.31 - green
Feb.1 - yellow
Feb.2 - black
Feb.3 - red
Feb.4 - blue
and so on from picked date on. How do I do that?