Просмотр файла wab/mp3/mp3.php

Размер файла: 1.44Kb
<?
Error_Reporting(E_ALL & ~E_NOTICE);


$host = "wap.wab.ru";
$path = "/downloads/mp3.php?l=$l&in=$in&who=$who";
$fp = fsockopen($host,80,$errno,$errstr,30);
if(!$fp) echo"$errstr ($errno)<br />\n";
else{
$headers = "GET $path HTTP/1.0\r\n";
$headers .= "Host: $host\r\n";
$headers .= "Accept: *\r\n";
$headers .="Accept-Charset: UTF-8\r\n";  // <<====
$headers .= "Accept-Charset: *\r\n";
$headers .= "Accept-Encoding: deflate\r\n";
$headers .= "Accept-Language: ru\r\n";
$headers .= "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.01\r\n\r\n";
fwrite($fp,$headers);
while($text != "\r\n") $text = fgets($fp,128);
$text = "";
while(!feof($fp)) $text .= fgets($fp,4096);
fclose($fp);
}
//**/
//$text = join('', file("http://www.wab.ru/downloads/1.xml"));

$text = explode("</head>",$text);  // отрезаем перед
$text = $text[1];

$text = explode("</div>",$text);  // отрезаем перед
$text = $text[2];
$text = str_replace("mp3.php","http://wap.wab.ru/downloads/mp3.php",$text);
$text = strip_tags($text, "<a><br/><b>");



header("Content-type:text/vnd.wap.wml;charset=utf-8");
print "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
print "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.2//EN\" \"http://www.wapforum.org/DTD/wml12.dtd\">";
print "<wml>";
print "<card id=\"index\" title=\"&#x417;&#x430;&#x433;&#x440;&#x443;&#x437;&#x43A;&#x430;!\">";
print "<p>";
print "$text";

print "</p></card></wml>";
?>