PHP Multiple Curl Requests

helenblizzard

New Member
I'm currently using Curl for PHP a lot. It takes a lot of time to get results of about 100 pages each time. For every request i'm using code like this\[code\]$ch = curl_init();// get sourcech_close($ch);\[/code\]What are my options to speed things up?How should I use the multi_init etc>?
 
Back
Top