- Автор темы
- #1
Есть код, На денвере все шепчет. Заливаю на сервак не хочет работать.
В чем может быть ошибка?
В чем может быть ошибка?
HTML:
$url = "http://bobrdobr.ru/login/";
$post="username=653453v&password=345353999";
$ua = 'User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Widows NT)';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url); //указываем URL для запроса
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, $ua);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIE, "bobrologin=1");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_COOKIEFILE, $_SERVER['DOCUMENT_ROOT'].'/cookie.txt');
$result = curl_exec($ch);
echo $result=iconv("utf-8", "windows-1251", $result);
$sess_cookie=substr($result, strpos($result, "sessionid=")+10, 32);