Cron - Auto Repeating
I have found (so far) three ways to "automate" tasks.
Cron is a "server" that repeats a task with a certain interval - every week, every day, every minute. Any task that can be done in almost any interval - automagically.
Another way to automate is Websockets. WebSocket is a computer communications protocol that allows messages to be passed back and forth while keeping the connection open.
The third way is to use triggers in a database. If something is added,edited or deleted, a trigger is doing something else. (logging or w
This simple site is an attempt to test Cron in action.