How to Make Async Requests in PHP.
Nice technique for making async requests in PHP. Though the one thing it doesn’t offer is callback functionality. Then again, that would require a persistently running PHP process. Probably the best solution would be a forked process that performs callback functionality, which is then retrieved by client-side async requests.
Or just display the results the next time a page is loaded.
You must be logged in to post a comment.