Просмотр файла loads/films/download.php

Размер файла: 992B
<?php
include '../inc/head.php';

$file=file_get_contents('http://films.wapos.ru/download.php?'.$_SERVER['QUERY_STRING']);
$file=str_replace('<?xml version="1.0" encoding="UTF-8"?>','', $file);
$file=preg_replace('|<!DOCTYPE html PUBLIC(.*?)ru">|is','',$file);


$file=str_replace('<div class="logo"><img src="/img/logo.gif" alt="" /></div>','', $file);
$file=str_replace('<title>Бесплатные Терабайты Загрузок на lemalsoft.ru</title></head><body>','', $file);
$file=preg_replace('|<div class="foot"(.*?)</div>|is','',$file);
$file=str_replace('<a href="http://lemalsoft.ru/">На главную</b></a>','<a href="../">На главную</b></a>', $file);
$file=str_replace('http://video.wapos.ru/3gp/','3gp.php?3gp=', $file);
$file=str_replace('http://video.wapos.ru/mp4/','mp4.php?mp4=', $file);
$file=preg_replace('|<input type=(.*?)br/>|is','',$file);
$file=preg_replace('|<div class="logo(.*?)/div>|is','',$file);

echo $file;
include '../inc/foot.php';

?>