I want to use curl in my codeigniter application. But I am getting null array.
My code is like this:
$this->load->library(\'curl\'); $url = \"http:
URL passed to cURL should be absolute-full-with-domain.
cURL
Instead of:
$url = "url/checkweb.php";
try:
$url = "http://yourdomain.com/url/checkweb.php";