Is there a way to do this using popen?
Or do I have to use proc_open?
Let's say I want to run a php script: "/tmp/foo.php".
How would I execute that and get it's PID?
you can use exec see the user notes for how to get the pid
Terrific! Thank you sir.