Home › Forums › Back End › Change body background color each week from four set colors › Re: Change body background color each week from four set colors
May 20, 2013 at 10:02 am
#135705
Member
this might not be the most elegant solution but its something
$day = date(‘l’);
if($day == ‘Monday’)
{
//monday color code
}
elseif($day == ‘Thuesday’)
{
//thuesday color code
}
//..and so on…