there is already similar questions on stackoverflow, but none of their solutions have been working for me. I\'m trying to grab a page on LoveIt.com with cURL, but it return
Thanks for your answer, so I did visit the page, saved the cookies in a cookies.txt file (with chrome extenson cookie.txt export) that I use NOT CURLOPT_COOKIEJAR, but for option CURLOPT_COOKIEFILE.
$cookiefile = './cookie.txt';
curl_setopt($curl, CURLOPT_COOKIEFILE, $cookiefile);
and now it works ! Thanks for your feedback, it was really useful.