style name does not matter. You can name styles in anyway you like.
My code is interested in style ids, not names. So it will display styleid 1 in sunday and 2 in monday etc.
If your styles are not in order, instead of $styleid=date("w",time())+1;
you can use this code:
if (date("w",time())==0)
{
$styleid=X; //enter id for sunday
}
elseif (date("w",time())==1)
{
$styleid=Y;
//enter id for monday
}
..
..
elseif (date("w",time())==6)
{
$styleid=Q;
//enter id for saturday
}
see?