Бот голосования на сайте BBC. Запускаем и голосуем.
<?
$host='newsvote.bbc.co.uk'; /// HTTP сервер
$port=80; /// HTTP порт
set_time_limit(0);
Error_Reporting(E_ALL & ~E_NOTICE);
$request = "POST /VoteCounter/submit_vote HTTP/1.1\r\n";
$request .= "Host: ".$config['host']." \r\n";
$request .= "User-Agent: Opera 7.50";
$request .= "Connection: keep-alive\r\n";
$request .= "Referer: http://yandex.ru/ \r\n";
$posts = "CALLING_STORY=drink_1 PRIMARY_KEY=drink_1 VOTE_CHOICE=ONE";
$postValues=$posts;
$lenght = strlen($postValues);
$request2 = $request."Content-Type: application/x-www-form-urlencoded\r\n";
$request2 .= "Content-Length: $lenght\r\n";
$request2 .= "\r\n";
$request2 .= $postValues;
echo "ОДЕКОЛОН РУЛИТ<br>";
while(++$i <= 500)
{
$fp = fsockopen($host, $port,$errno, $errstr, 10);
echo "Посылка голоса ".$i."<br>";
fwrite($fp, $request2);
}
///Закрываем сокет
fclose($fp);
?>