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 Quote 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... Quote Link to comment https://forums.phpfreaks.com/topic/86157-curl-again/#findComment-440027 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.