[PHP-DB] scheduler

2009-09-23 Thread Vinay Kannan
Hi, I am developing a web application in PHP, the db is mysql. I want to develop something like a batch file, which would run everyday, query mysql and throw the output to another table which would then perform some additional functions. Is something like this possible?? i am working on windows

Re: [PHP-DB] scheduler

2009-09-23 Thread Kamil Walas
Hi, try this: http://cronw.sourceforge.net/ Kamil Walas Vinay Kannan pisze: Hi, I am developing a web application in PHP, the db is mysql. I want to develop something like a batch file, which would run everyday, query mysql and throw the output to another table which would then perform some

Re: [PHP-DB] scheduler

2009-09-23 Thread Samar Hedaoo
If you had been using linux, I would have suggested *cron* for job scheduling. On Windows, there should be something like Task Scheduler for the same. You can write the code for database query and dumping in PHP and then have a batch file containing php yourfile.php scheduled to run using the

Re: [PHP-DB] scheduler

2009-09-23 Thread Phpster
Scheduled task? Bastien Sent from my iPod On Sep 23, 2009, at 6:46 AM, Vinay Kannan viny...@gmail.com wrote: Hi, I am developing a web application in PHP, the db is mysql. I want to develop something like a batch file, which would run everyday, query mysql and throw the output to another

Re: [PHP-DB] scheduler

2009-09-23 Thread Niel Archer
Hi, I am developing a web application in PHP, the db is mysql. I want to develop something like a batch file, which would run everyday, query mysql and throw the output to another table which would then perform some additional functions. Is something like this possible?? i am working

Re: [PHP-DB] scheduler

2009-09-23 Thread Richard Quadling
2009/9/23 Vinay Kannan viny...@gmail.com: Hi, I am developing a web application in PHP, the db is mysql. I want to develop something like a batch file, which would run everyday, query mysql and throw the output to another table which would then perform some additional functions. Is

Re: [PHP-DB] scheduler

2009-09-23 Thread Vinay Kannan
Thank You Neil ! So if I write in a command like C:\php\php.exe C:\path\to\script.php in a batch file, and have another batch file to run it at given time frames, then the PHP file would make the updates and perform the functionalities that its required to do, is it? coz what I have on my mind is

Re: [PHP-DB] scheduler

2009-09-23 Thread Richard Quadling
2009/9/23 Vinay Kannan viny...@gmail.com: Thank You Neil ! So if I write in a command like C:\php\php.exe C:\path\to\script.php in a batch file, and have another batch file to run it at given time frames, then the PHP file would make the updates and perform the functionalities that its