If you add multiple sessions before executing, it will run it as a multi_session CURL:
$this->load->library('curl'):
$this->curl->add_session('http://www.getfuelcms.com');
$this->curl->add_session('http://docs.getfuelcms.com');
$results = $this->curl->exec(); By default, the block_size is set to 5 which means it will run 5 CURL requests at a time. The $results will be an array of info from the CURL requests.
There are second and third options that can be passed to add_session. The second parameter is where you can specify the type of CURL request and there is a shortcut of "post" you can use: $this->curl->add_session('http://www.getfuelcms.com', 'post');
Comments
$this->load->library('curl'): $this->curl->add_session('http://www.getfuelcms.com'); $this->curl->add_session('http://docs.getfuelcms.com'); $results = $this->curl->exec();
By default, the block_size is set to 5 which means it will run 5 CURL requests at a time.
The $results will be an array of info from the CURL requests.
$this->curl->add_session('http://www.getfuelcms.com', 'post');