|
For example, I have my website in a webhosting php / mysql (like ixwebhosting) so I want to do a process like notifications, or mail the subscribers at determined date and time i.e. like a calendar.
It is possible to create a php bot programmed to do some process installed in a web hosting server?
It depends on whether or not your web host offers a task scheduler (called CRON on Linux/Unix machines). Most PHP-based content management systems (Drupal, Moodle, PHPBB2, etc) that have some sort of periodic maintentance like sending out mailing lists, have a special script, typically called "cron.php", which must then be called from the cron application.
Failing that, the only other way to do it would be to set up a scheduled task on YOUR machine to call up the script in your web browser... which is pretty awkward.
For your calendar example, you would set up a CRON task to call your script once a day. The script would then check the database and see if there are any upcoming notifications that need to be sent out.
|