I have a script named data.php that looks like this:
/* do some stuff */
echo $result;
/* do some other stuff (eg database operations) */
I need to use the output of data.php in another script, but I do not want the calling script to wait for data.php to complete.
What is the easiest way to do this?
Thanks in advance!
source
share