I need the script to run independently of users. I'll explain the premise:
I have two databases: the first is to hold requests, the second is to hold data.
The request db is updated by SMS (a POST request sent from the service provider). The data db is updated by periodically by someone else. I need the script to run every x sdeconds, first to check the request db if there are any unfulfilled requests, and then check the data db if there is data corresponding to the unfulfilled requests.
Any data that exists is sent to the service provider to be sent out via SMS.
I've looked up cron jobs on Google - how easy is it to set this up with a hosting company?
Thanks,
Mei