Файл: music/index.php
Строк: 15
<?php
require_once ("../inc/head.php");
require_once ("conf.php");
header("Content-type:text/html; charset=utf-8");
$file = file_get_contents("http://kzzone.ru/new-music/?".$_SERVER['QUERY_STRING']);
$file=preg_replace('|<!DOCTYPE(.*?)</script></div>|si','',$file);
$file = str_replace('KZZONE.RU', ''.DOWN_rekl.'', $file);
$file = str_replace('<a href="files', '<a href="http://kzzone.ru/new-music/files', $file);
$file=preg_replace('|<div class="phdr">Рекомендуем посетить!</div>(.*?)</html>|si','',$file);
echo $file;
require_once ("../inc/foot.php");
?>