I want a First Day Of a week say I have 45th week. Now I want to have date of the first sunday of this week. Can any one suggest me how I can go about this ?
Thank
you should strtotime and date function
some code like that
$next_sunday = strtotime('next sunday'); $next_week = strtotime('+1 week'); $next_sunday_of_next_week = strtotime('next sunday', $next_week);
hope this helps