Within my PHP script, I want to do an exec(), but I don't want PHP to wait for the console to finish executing the program. I just want to start the program with exec(), and have it spawn off a command console that will run the program in the console and then the PHP thread would finish, and then close out.
The problem is that my PHP thread is waiting for the exec() to finish. I just want to run my command line program, and then have PHP "keep going" so it doesn't have to wait for results. I don't need the results of the program output.
Please help!
Jon