how can I get last week\' date range in php ?
see my codes bellow:
Simply use
date("m/d/Y", strtotime("last week monday")); date("m/d/Y", strtotime("last week sunday"));
It will give the date of Last week's Monday and Sunday.