Файл: charts/index.php
Строк: 15
<?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/?".$_SERVER['QUERY_STRING']);
$data = preg_replace('/<?xml(.*?)</a></p>/si', '', $data);
$data = preg_replace('/<p class="nav">(.*?)</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('/charts/view/','view.php?id=', $data);
$data = str_replace('Список чартов','<div class="phdr">Список чартов</div>', $data);
$data = str_replace('</h12>','</div>', $data);
echo $data;
require_once ($rootpath ."incfiles/end.php");
?>