Func Curl_Multi_Add_Handle
# PHP curl_multi_add_handle Function
# PHP curl_multi_add_handle Function
[!(#) PHP cURL Reference](#)
(PHP 5)
`curl_multi_add_handle` β Adds an individual cURL handle to a cURL multi handle.
* * *
## Description
```php
int curl_multi_add_handle ( resource $mh , resource $ch )
Adds the `ch` handle to the multi handle `mh`.
* * *
## Parameters
**mh**
A cURL multi handle returned by `curl_multi_init()`.
**ch**
A cURL handle returned by `curl_init()`.
* * *
## Return Values
Returns `0` on success, or one of the `CURLM_XXX` error codes on failure.
* * *
## Example
This example will create two cURL handles, add them to a multi handle, and run them in parallel.
```php
0);
// Close all handles
curl_multi_remove_handle($mh, $ch1);
curl_multi_remove_handle($mh, $ch2);
curl_multi_close($mh);
?>
* * PHP cURL Reference](#)
YouTip