From the PHP manual page, it looks like you can only set the cURL options for all the handles you're including once. So it's like the multiple cURL sessions will only do what you told them to before you added them to the multi_curl handle.
But what if I needed EVERY (I want them all to do the same thing!) handle I added to the multi_handle to execute more than one page?
If the above isn't put into words properly, how do you go about doing something like this in multi_curl?
curl_setopt($currenthandle, CURLOPT_URL, 'http://www.google.com'); curl_exec($currenthandle); curl_setopt($currenthandle, CURLOPT_URL, 'http://www.pageineedtopostto.com'); curl_setopt($currenthandle, CURLOPT_POST, true); curl_setopt($currenthandle, CURLOPT_POSTFIELDS, array('param' => 'value'); curl_exec($currenthandle);