$ch = curl_init();
$userAgent = 'Googlebot/2.1 (http://www.googlebot.com/bot.html)';
curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch,CURLOPT_PROXY,'proxyadresi'); // bu satırı
curl_setopt($ch,CURLOPT_PROXYPORT,'proxyport');
$data = curl_exec ($ch);
proxyadresi ve proxyport güncel proxy listesi arayarak bulabilirsin.
curl_close ($ch);
ben bunu botun içine flnmı yerleştiricem?