[PHP] Cron php refresh

2008-04-20 Thread Jeffrey
I'm working on an application that includes e-mail notifications of certain events. Because the application will have hundreds or thousands of users, I've designed it so that e-mail notifications are saved to a MySQL table. Then a regular cron job runs a php page to select the data from the

Re: [PHP] Cron php refresh

2008-04-20 Thread Per Jessen
Jeffrey wrote: I'm working on an application that includes e-mail notifications of certain events. Because the application will have hundreds or thousands of users, I've designed it so that e-mail notifications are saved to a MySQL table. Then a regular cron job runs a php page to select the

Re: [PHP] Cron php refresh

2008-04-20 Thread Børge Holen
On Sunday 20 April 2008 11:27:38 Jeffrey wrote: I'm working on an application that includes e-mail notifications of certain events. Because the application will have hundreds or thousands of users, I've designed it so that e-mail notifications are saved to a MySQL table. Then a regular cron

Re: [PHP] Cron php refresh

2008-04-20 Thread Jeffrey
Per Jessen wrote: Jeffrey wrote: I'm working on an application that includes e-mail notifications of certain events. Because the application will have hundreds or thousands of users, I've designed it so that e-mail notifications are saved to a MySQL table. Then a regular cron job runs a php

Re: [PHP] Cron php refresh

2008-04-20 Thread Per Jessen
Jeffrey wrote: Per Jessen wrote: Jeffrey wrote: I'm working on an application that includes e-mail notifications of certain events. Because the application will have hundreds or thousands of users, I've designed it so that e-mail notifications are saved to a MySQL table. Then a regular

Re: [PHP] Cron php refresh

2008-04-20 Thread Per Jessen
Børge Holen wrote: Is the MTA operational on the server? if so, forget mailing with php and rather use php to access the mta. Yeah, that is what mail() does - it calls sendmail. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Cron php refresh

2008-04-20 Thread Larry Garfield
On Sunday 20 April 2008, Jeffrey wrote: I'm working on an application that includes e-mail notifications of certain events. Because the application will have hundreds or thousands of users, I've designed it so that e-mail notifications are saved to a MySQL table. Then a regular cron job runs a

Re: [PHP] Cron php refresh

2008-04-20 Thread Jason Norwood-Young
On Sun, 2008-04-20 at 13:32 -0500, Larry Garfield wrote: On Sunday 20 April 2008, Jeffrey wrote: I'm working on an application that includes e-mail notifications of certain events. Because the application will have hundreds or thousands of users, I've designed it so that e-mail

Re: [PHP] Cron php refresh

2008-04-20 Thread Børge Holen
On Sunday 20 April 2008 13:37:04 Per Jessen wrote: Børge Holen wrote: Is the MTA operational on the server? if so, forget mailing with php and rather use php to access the mta. Yeah, that is what mail() does - it calls sendmail. /Per Jessen, Zürich What the point of 50 mails now and

Re: [PHP] Raspuns: [PHP] Cron + PHP

2001-02-09 Thread Jørg V . Bryne
- Original Message - From: "Ovidiu EFTIMIE" [EMAIL PROTECTED] To: "GAYTAN BAHAMONDEZ DANIEL EDUARDO" [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, February 09, 2001 8:31 AM Subject: [PHP] Raspuns: [PHP] Cron + PHP 0 20 * * * lynx -dump http://localhost/file.php

[PHP] Cron + PHP

2001-02-08 Thread GAYTAN BAHAMONDEZ DANIEL EDUARDO
How can i make a crontab run a php file??? should i add something like this in the file: path/to/file.php Thanks in advance... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the

Re: [PHP] Cron + PHP

2001-02-08 Thread Joe Stump
#!/path/to/php -q ? mail('[EMAIL PROTECTED]','foo','foo'); ? chmod +x foo.php 0 0 * * * /path/to/foo.php /dev/null --Joe On Thu, Feb 08, 2001 at 07:36:57PM -0300, GAYTAN BAHAMONDEZ DANIEL EDUARDO wrote: How can i make a crontab run a php file??? should i add something like this in the

Re: [PHP] Cron + PHP

2001-02-08 Thread Website4S
Hi, Yes just make the path lead to the file on your server. Regards Adrian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]