<?php
set_time_limit(0);
Error_Reporting(E_ALL & ~E_NOTICE);
$mail = 'qweqwe@mail.ru'; //e-mail или логин от контакта
$pass = 'qweqwe'; //пароль от контакта
function grabb($str, $start, $end) {
$start = strpos($str, $start) + strlen($start);
$end = strpos($str, $end, $start);
$result = substr($str, $start, $end - $start);
flush();
return $result;
}
$res = connect("http://login.vk.com/?act=login&email=$mail&pass=$pass&vk=");
$sid = grabb($res, "id='s' value='", "'");
$res = connect("http://vkontakte.ru/login.php?op=slogin&redirect=1&s=$sid");
$cookie = 'remixchk=5; remixsid='.grabb($res, 'remixsid=', ';');
function connect($link, $cookie=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_GET, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_COOKIE, $cookie);
$otvet = curl_exec($ch);
curl_close($ch);
return $otvet;
}
connect ('http://vkontakte.ru/profile.php', $cookie);
?>
куда код вставить?