I have a sequential dialling app but I want to add 5 minute delays between each call.. I am thinking cron job. is this possible? If so what do I need to do to make this happen? I have no experience with cron..
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I would just set up some sort of queue in a database, then every 5 minutes execute a script that reads the next phone number to call from the queue. Running a script every 5 minutes with a cron will look like this:
|
|||||||
|
|
I just found sleep function in PHP manual which did just what I needed. Plus its really simple, can't believe not many knew of this. |
|||||||||
|