Playing With CURL

hamzuz

Newbie
Joined
Dec 2, 2009
Messages
11
Reaction score
0
Is it possible to use CURL with different ips and let it capture all the data from multiply redirections?​
 
yes, it is possible

$proxy = '211.138.124.197:80';
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 0);
curl_setopt($ch, CURLOPY_PROXYAUTH, CARLAUTH_BASIC);

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
 
yes, it is possible

$proxy = '211.138.124.197:80';
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 0);
curl_setopt($ch, CURLOPY_PROXYAUTH, CARLAUTH_BASIC);

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

Thank you.
 
Back
Top