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 don't want the caller script to wait until data.php is finished.
What's the easiest way to do this?
Thanks in advance!