View file fmobilib/1.php

File size: 591B
<?
///////   диапазон книг
for($id=1; $id<150; $id++)
{
$hostname = "wap.mobilib.ru";
$path = "/gb/gbwrite.php?id=$id&ps=1000"; //
$fp = fsockopen($hostname,80);
if (!$fp) echo "ERROR";
else
{
$data =
"name=".urlencode("name")."&text=".urlencode("http://site.ru")."\r\n\r\n";
$headers = "POST $path HTTP/1.1\r\n";
$headers .= "Host: $hostname\r\n";
$headers .= "Content-type: application/x-www-form-urlencoded\r\n";
$headers .= "Content-Length: ".strlen($data)."\r\n\r\n";
fwrite($fp, $headers.$data);
while (!feof($fp))
{
$line .= fgets($fp, 1024);
}
fclose($fp);}}
?>