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 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. Link to comment https://forums.phpfreaks.com/topic/200011-curl-class-help/#findComment-1049756 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.