Hi, I have a problem.
How to call external program which will create a new thread in PHP ? I want to do this so newly-spawned external program runs in its own thread, and the calling PHP script does not have to wait the spawned program (just like fire and forget).
Does exec() function overcome this problem ?
I really appreciate any help regarding this topic.