Connecting Tech Pros Worldwide Help | Site Map

PhP call on conditions

  #1  
Old July 17th, 2005, 03:15 PM
twins
Guest
 
Posts: n/a
Hi,

Iam wondering if there is any method to do the following:
1) When a file is created in a directory in local computer.
2) When the mysql date stored in the DB approaches the current date and
time.
For the above two conditions I would like to call a php file.

Its not good to have the php code running in the background and waiting
for the above 2 events.

Please do suggest other methods to achieve the above.

Thanks

  #2  
Old July 17th, 2005, 03:15 PM
Jerry Stuckle
Guest
 
Posts: n/a

re: PhP call on conditions


twins wrote:[color=blue]
> Hi,
>
> Iam wondering if there is any method to do the following:
> 1) When a file is created in a directory in local computer.
> 2) When the mysql date stored in the DB approaches the current date and
> time.
> For the above two conditions I would like to call a php file.
>
> Its not good to have the php code running in the background and waiting
> for the above 2 events.
>
> Please do suggest other methods to achieve the above.
>
> Thanks
>[/color]

Think about it - unless there's something monitoring for these conditions, how
do you expect to be able to start some PHP code when they occur?

There isn't anything in Unix which will do it. Same with MySQL. You'll need to
create something. It can either be a program which runs constantly in the
background, or (my suggestion) a cron job you kick off every so often to look
for these conditions.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
php scripts and tripple slashes mijn naam answers 8 September 29th, 2008 05:05 PM
Performance of lots of ECHO's V Jumping In/Out of PHP M answers 10 November 11th, 2006 07:05 AM
Python or PHP? Lad answers 68 July 19th, 2005 02:09 AM
Python as replacement for PHP? Erik Johnson answers 28 July 17th, 2005 05:03 AM