----- Original Message ----- 
From: "Dale Frohman" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, March 16, 2001 5:33 AM
Subject: [PHP] Reminders


> I have a web interface that will submit entries into a mysql db.  These
> entries are things to do at certain times, an organizer.  Is there a way
> for php to intelligently keep track of time and when the certain time of
> the event hits, to trigger an event - such as an email.  Any help will be
> appreciated.
> 
> Thanks

I would wirte a C or Perl program query database tables. If there are
event must be handled, send e-mail or whatever. Use cron, to execute 
the program for certain interval. If you have many events, users or need
realtime response, you may need to use different approch so that you 
don't have to query db a lot. i.e. create deamon that stores and handles 
events.
 
If you really would like to do it with PHP, use CGI version of PHP for it.

Regards,
--
Yasuo Ohgaki

> 
> 
> --
> 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]
> 
> 

-- 
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]

Reply via email to