php - Checking if the current date is greater than last monday -
so looking is, how can show days remain of week until sunday, current date , not show passed days of current week ? please point me in right direction, don't know start from...
the php date function can return numeric representation of day of week.
$current_date = (int)date('w');
then walk through loop outputing remaining days.
Comments
Post a Comment