I have a console programe that run only if current day is Sunday and set the target date(Completion date) for that programe next sunday.Now i want to make a programe that run once in a week and set the target date for that programe after 7 days.for example i programe run on Monday tthen target date should be next Monday if run on Tuesday then target date should be next Tuesday and so on.
$sunday = Date("D");
if($sunday == 'Sun') {
remaining function
}
I have this logic for my first programe.I am using this programe in CakePhp Console(Shell).Any help for second one?
Thanks