habib009pk Posted April 28, 2010 Share Posted April 28, 2010 Dear friends, I am sending a code for crawling a page, That is the code: ================================== $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERAGENT, $agent); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($ch, CURLOPT_FTP_SSL, CURLFTPSSL_TRY); curl_setopt($ch, CURLOPT_REFERER, $reffer); curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path); $res1 = curl_exec($ch); curl_close($ch); ------------------------------------------------------------------------------ Dear friends please tell which code is use for displying its result in browser i want to display all the crawled page in browser Waiting for your reply Thanks and Regards Quote Link to comment https://forums.phpfreaks.com/topic/200011-curl-class-help/ Share on other sites More sharing options...
Daniel0 Posted April 28, 2010 Share Posted April 28, 2010 You just need to echo the $res1 variable. Quote Link to comment https://forums.phpfreaks.com/topic/200011-curl-class-help/#findComment-1049756 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.