<?php
define('_IN_JOHNCMS', 1);
$textl = 'Сборная Украина';
require_once ("../incfiles/core.php");
require_once ("../incfiles/head.php");
header("Content-type:text/html; charset=utf-8");
$file = file_get_contents("http://m.ua-football.com/ukrainian/national/?".$_SERVER['QUERY_STRING']);
$file = preg_replace('/<!DOCTYP(.*?)<div class=\"content\">/si','',$file);
$file = preg_replace('/<noindex(.*?)<\/html>/si','',$file);
$file=str_replace('<a href="http://m.ua-football.com/national/(.*?)"class="review">(.*?)</a>','<a href="http://17zone.org/grab/txt.php">', $file);
echo $file;
require_once("../incfiles/end.php");
?>