I’m using Curl for PHP for a while but now I’m facing a case that I don’t know how to solve.
I need to do more than 400 request from the same page. In other cases I have used curl_multi and it works perfect, the problem with this case is I need to use the same handler for all requests for having the expected result. As far as I understood and the way I used it is adding an independent Curl handle with the curl_init() to the multi_handle. I tried to pass the same handle but I get in all the cases the result of the last of the resquest.
Any ideas of how to solve it?