I have a column that stores a 1-digit value for Day of Week:
0 = Sunday
1 = Monday
...
6 = Saturday
I tried PHP date('l', $row['dow'])
and MySQL DATE_FORMAT(dow, '%w')
but neither return the Day of Week word.
Is it possible in PHP or MySQL to do this or do I just need to create an array() var?