Ну мне нечего было делать,решил посмотреть,что там изменилось,понял,что практически ничего.
Ну не знаю,назвать это обходом или нет,ну там нету ни кукисов ничего,вообщем вот.

Код:
<?php
$uid = '163493731';
while(1){
$base = connect('http://vklid.ru/php/showclicks.php','uid='.$uid);
preg_match('/<id>(.*?)<\/id>/',$base,$id);
echo $id[1]."\n";
connect('http://vklid.ru/php/vipclick.php','zid='.$id[1].'&uid='.$uid);
}
function connect($link,$post=null){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$link);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_TIMEOUT, 0);
curl_setopt ($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
if($post !== null)
{
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
}
$otvet = curl_exec($ch);
curl_close($ch);
return $otvet;
}
?>