[PHP] I don't want to use include

2004-06-22 Thread QT
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 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2004-06-22 Thread Matt Matijevich
[snip] When I use include, my script is waiting included script results. But I just want to run another local script without wait result. [/snip] you could try something like this $cmd =/path/to/php.exe . ' ' . /path/to/your/script exec($cmd); check out