I am using jQuery AJAX request to run a script that can take several
minutes to create a report. I want to start the script and immediately
echo a response to close the connection and then let the script complete
a report which I can get later. I have tried several thing such as
ob_start();
echo json_encode(array("time"=>$now, "message"=>"Report has started
running!"));
ob_end_flush();
However, the script does not respond and (I suppose close the
connection) until the report is complete. How can I fix this behaviour?
Jim
--
James (Jim) B. White
tel: (919)-380-9615
homepage: http://jimserver.net/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php