I have a small PHP script that I want to run periodically on my Linux server, but have yet to figure out how to do it.
The script has no terminal output. It simply updates a database with the status of some specified websites (it's a site monitor). I want to run it every 10 minutes or so, but if I use Lynx, the browser stays resident in memory instead of exiting once the script is done. When it runs again, another instance loads in memory. Not a good plan for something that will run every 10 minutes.
So... is this something drop dead simple that I'm just missing or is there a funky trick to it?
Thanks in advance!