I was wondering if it would be possible to make a PHP script run on a server, every 5 minutes. I don't know if PHP is capable of doing this, and if it's not, how would it be possible to do by using other languages to trigger the PHP script?
More specifically, It needs to be automated. I don't think this is possible in PHP, if I remember right, so I'd have to combine languages, but I don't know where to start..
You just stick the php script in the task scheduler specific to your OS. Cron for *nix Task Scheduler for Windows
Sweet! I'll try that! Thanks.