mr_mind Posted January 15, 2008 Share Posted January 15, 2008 Alright, ive got my cURL script working from before, now i just want to know if there is a way to not output the body of the page in the script but still parse it. I have tried curL_setopt($curl_init_1, CURLOPT_NOBODY, TRUE); but that does not actually parse the body Link to comment https://forums.phpfreaks.com/topic/86157-curl-again/ Share on other sites More sharing options...
tinker Posted January 15, 2008 Share Posted January 15, 2008 i'm not expert but I think you use: curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // return into a variable and then: $result = curl_exec($ch); Printing the result... Link to comment https://forums.phpfreaks.com/topic/86157-curl-again/#findComment-440027 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.