I am developing some AJAX apps and I need to close the socket connection with the client so the browser will execute the server response without waiting for the script to complete it's execution.
Here's what I want:
<?php
$bar = $_POST['foo'];
echo "alert('You said '".$bar."')";
/* this is where I would close the connection with client so browser evaluates server response */
someFunctionThatTakesALongTime();
?>
Any help would be most appreciated.