{% else-1 %}
(3 мар 2013, 19:32) (0/0) [0]
че тут нетак?

function connect($link,$cookie=null,$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($cookie !== null)
{
curl_setopt($ch, CURLOPT_COOKIE, $cookie);
}
if($post !== null)
{
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
}
$otvet = curl_exec($ch);
curl_close($ch);
return $otvet;
}

$otvet = connect(\"https://login.vk.com/?act=login&email=логин&pass=пароль\"*;

if(!preg_match(\"/hash=(.*?)&/\",$otvet,$hash)){

echo \"<script>alert(\'Не правильно введен логин или пароль\')</script>\";

}

хотя данные правильны но всегда пишет пароль неверн
  • 1 из 1