I have a PHP script that does a lot of checks and then downloads a file to the server and outputs the original.
To download the file I use
system("/usr/local/bin/wget -O ...");
So php waits for the download to finish and then it outputs the file.
My question is if its possible to send a "ping" somewhere (other php file?) for the download to start and then without waiting for the result just continue with the execution.