I'm using YII framework for my website. I would like to schedule a task, as in, if a user has his/her birthday, then the scheduler will pop a birthday greeting for the particular day and remove it a day later? Has YII any inbuilt functionality to trigger such events? For Windows OS? Or is there any alternative to Cron jobs?
This link will help you to crate JOBS using yiic
Schedule it as a cron job. That's the easiest way!!Write a console command in php to check the birthdays for the day and schedule this command as a daily cron job.Cron will execute daily and if der is any birthday the popup action will get executed.