Forum Moderators: coopster
Basically, I want certain chunks of content rotated at weekly intervals.
So I want an if/then that does this:
if date equals range then include file x if date equals range2 then include file y
Thanks so much for the help
if ($date > $range_low && $date < $range_high) { include(file.txt);} elseif ($date2 > $range_2_low && $date2 < $range_2_high) { include(file2.txt);}