Re: [PHP] Re: I don't want to use include

2004-06-23 Thread Ulrik S. Kofod
If calling the backup function can wait till after your output is generated, then you can echo/print the output call " flush(); " and then call the backup routine. Then the backup won't apper to be slowing down as it is running after the output is send to the user. brgds QT sagde: > Dear sirs,

[PHP] Re: I don't want to use include

2004-06-23 Thread Jason Barnett
Qt wrote: Dear sirs, Actually I am using virtual server and I think I have no write to use crontab/ But this methods become to me interesting. I will try to learn more about how to use crontab and where can I find that in my virtual server? This isn't exactly a PHP issue, it's your operating system

[PHP] Re: I don't want to use include

2004-06-23 Thread QT
Dear sirs, Actually I am using virtual server and I think I have no write to use crontab/ But this methods become to me interesting. I will try to learn more about how to use crontab and where can I find that in my virtual server? If I use include in my script, I need to wait result of included s

[PHP] Re: I don't want to use include

2004-06-22 Thread Jason Barnett
Qt wrote: Dear Sirs, When I use include, my script is waiting included script results. But I just want to run another local script without wait result. Which command I should to use? Best Regards Are you hoping to set up a task as part of a batch for later processing? There are several ways you c

[PHP] Re: I don't want to use include

2004-06-22 Thread Amit Arora
You may want to use the exec() function. Please refer www.php.net/exec for more information Regards, Amit www.digitalamit.com Qt wrote: Dear Sirs, When I use include, my script is waiting included script results. But I just want to run another local script without wait result. Which command I shoul

[PHP] Re: I don't want to use include

2004-06-22 Thread Egil Berntsen
I sometimes use JS to open a new window outside the screen and close it at the bottom. "Qt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Dear Sirs, > > When I use include, my script is waiting included script results. But I just > want to run another local script without wait resu