Reputation: 73838
I want to be able to do few things using PHP: to setup CRON to run specific file at a specific moment (easy) and at the same time to get some sort of ID of that job, which would allow me to track/or cancel the job before it was even started. I would keep track of those IDs in my Database.
Upvotes: 1
Views: 199
Reputation: 14365
Messing directly with system files likes cron via PHP isn't really a good idea.
Upvotes: 2