I searched a lot of places, but couldn't find solution.
What I want to do is:
- submit a form on PHP server to another server, the request is to search some results back;
- The search will take several minutes, so the other server will first return a progress html page, the will page will call back to ping the other server when the final result will be returned;
- Get the final result page
The function is easy if form is submitted from browser. After viewing progress page, the final search result page will be returned and shown in browser.
But I don't want to show those on my client. I want to process that on my server, process data and show something else on my client.
Thanks a lot!!