Php cUrl Help Needed

Status
Not open for further replies.

warezrock

Active Member
704
2009
23
0
Is there any way around to get the content using cUrl anonymously
or
to send IP address randomly ?

What i am doing is to post the field here http://who.is/ and get the domain Registrant data. but after few request they block my IP address temporarily.

Thanks
 
3 comments
Use this for using curl with proxy

PHP:
curl_setopt($ch, CURLOPT_PROXYPORT, 8080);
curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP');
curl_setopt($ch, CURLOPT_PROXY, '127.0.0.1');
curl_setopt($ch, CURLOPT_PROXYUSERPWD, 'mypassifneeded');
 
Status
Not open for further replies.
Back
Top