Reputation: 19
I have some dates in the database of some events. I am thinking of a way to notify the user a day before that date. I have no Idea how to do that. Help me please.
Upvotes: 1
Views: 98
Reputation: 400
You need some form of automation:
An automated task that queries your data and takes an action is generally know as a worker.
There are many ways to create / mange workers. The most common in the LAMP stack is it to use cron jobs to call scripts (possibly php in this case) scripts.
a quick goolgle on cron job how-to would be suggested. but here is one site to look at
Upvotes: 1