Jump to content

Curl Class help


habib009pk

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.