Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Я с курлом не дружу... =/
Попробуй второй запрос сокетами сделать:
PHP:$host="example11111.ru"; $refer="http://example11111.ru/post_entry.html"; $zap="/post_entry.html"; $query="user=".$login."&passw=".$password.""; $post="POST $zap HTTP/1.1\r\n". "Host: $host\r\n". "Referer: $refer\r\n". "Cookie: $sess_cookie\r\n". "Accept-language: en\r\n". "Content-type: application/x-www-form-urlencoded\r\n". "User-Agent: Mozilla 4.0\r\n". "Content-length: ".strlen($query)."\r\n". "Connection: close\r\n\r\n$query"; $fp=fsockopen($host,80); fwrite($fp,$post); while($get=fread($fp,4096)) echo $get;