Is it possible for scripta.php to finish a task and then make scriptb.php start up, without a user having to go to scriptb.php to run it? If so, how? fopen?
thanks, DF
try using an include, if that isn't what you are looking for, give us an example of what you are trying to do
i read the include function in the PHP manual but i don't really get it. I want to do:
if ($hour == $lasthour + 1) run turnupdate.php
is this script something that you can do say every hour on the hour or does it have to be after some other script runs
turnupdate.php is run on the hour every hour but i need another script (the one shown above) to do the hour checking because the loop involved with hour checking is too resource draining to run on my server and i can't use 'cron' . So i'm gonna stick the timer script on another, then i want to call turnupdate.php.
sorry for not replying, but i can't think of any other things to try, not sure how to set a time to call another page, based on a page that has already been parsed and gone through, sorry