I\'m wondering if there is a way to start a separate thread in php to send and email.
I have a small web service which takes some information from an iPad app and then inserts d
I believe you want to execute an ob_flush() to send the data back to the client and allow your PHP script to continue executing. Note that you must be done with sending things back to the client, as you can't send any more after the ob_flush().