[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 http://www.php.net/manual/en/function.exec.php , there is
some useful user comments

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php