Hi,
I have this process intensive task that i would like to run in the background.
The user clicks on a page the PHP script runs and finally based on some conditions if required then it has to run a shell script EG: shell_exec('php measurePerformance.php 47 844 [email protected]');
Currently I use shell_exec BUT this requires the script to wait for an output. Is there anyway to execute the command I want and DO NOT wait for it to complete??
Thanks