Alternative to CURL due to long waiting
- by aalan
Hey Guys I currently run a PHP-script using CURL to send data to another server, to do run a PHP-script that could take up to a minute to run.
This server doesn't give any data back. But the CURL-request still has to wait for it to complete, and then it loads the rest of the orignal page. I would like my PHP-script to just send the data to the other server and then not wait for an answer.
So my question is how should I solve this? I have read that CURL always has to wait. What are your suggestions?
Thank You!