Файл: vipmob.tk/otvet/index.php
Строк: 8
<?php
$title = 'Готовое домашнее задание';
require_once('head.php');
echo '<div class="phdr">Готовые домашние задания</div>';
$file=file_get_contents('http://4oko.ru/otvet/?'.$_SERVER['QUERY_STRING']);
$file = str_replace ('<?xml version="1.0" encoding="utf-8"?>', '', $file ) ;
$file = preg_replace ('/<!DOCTYPE html(.*?)<body>/si' ,'' ,$file );
$file = preg_replace ('/<div class="head">(.*?)</div>/si' ,'', $file );
$file = preg_replace ('/<div class="title">(.*?)</div>/si' ,'', $file );
$file = preg_replace ('/<div class="tab">(.*?)</div>/si' ,'', $file );
$file = preg_replace ('/<div class="adv">(.*?)</div>/si' , '', $file );
$file = preg_replace ('/<div class="foot">(.*?)</html>/si' ,'', $file );
echo $file;
require_once('foot.php');
?>