Файл: charts/view.php
Строк: 14
<?php
define('_IN_JOHNCMS', 1);
$headmod ="hit";
$textl = 'Хит-Парады Sumbo.Su';
$rootpath = '../';
require_once ($rootpath ."incfiles/core.php");
require_once ($rootpath ."incfiles/head.php");
header("Content-type:text/html; charset=utf-8");
$data = file_get_contents("http://play.zaycu.ru/charts/view/".$_GET['id']."?".$_SERVER['QUERY_STRING']);
$data = preg_replace('/<?xml(.*?)</a></p>/si', '', $data);
$data = preg_replace('/<img src="http://zaycu.ru/img/za.gif" alt="." />(.*?)</html>/si', '', $data);
$data = preg_replace('#<li>(.*)</li>#sU','<div class="menu">1</div>',$data);
$data = preg_replace('#<ul(.*)>(.*)</ul>#sU','2',$data);
$data = str_replace('/track/','track.php?track=', $data);
echo $data;
require_once ($rootpath ."incfiles/end.php");
?>