I have a bunch of rows in a MySQL table with time information. After a set amount of time for each row, I would like to call up a .php script to update the row. What language would I use to have the server internally call the .php script on a time based system? Thanks in advance!
You are basically looking for cron job I think. Cron in linux/unix that is similar to task schedular in windows. If yes, then here is the complete details on how to set it up. http://www.unixgeeks.org/security/newbie/unix/cron-1.html and http://www.astahost.com/info.php/cron-jobs-tutorial_t2324.html regards