Файл: raz/index.php
Строк: 5
<?php
include ("../header.php");
$curl = curl_init();
curl_setopt($curl,CURLOPT_URL,'http://eroh.ru/ero/search.php?'.$_SERVER['QUERY_STRING']);
curl_setopt($curl,CURLOPT_USERAGENT,'Nokia: 5130');
curl_setopt($curl,CURLOPT_TIMEOUT,6);
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
$text = curl_exec($curl);
curl_close($curl);
$text=preg_replace('|<!DOCTYPE(.*?)<div class="bib">|is', '<div class="videos_list">', $text);
$text=str_replace('<div class="list">','<div class="wrap">',$text);
$text=preg_replace('|<div class="gmenu">(.*?)</html>|is', '', $text);
$text=str_replace('К выбору категории','Эро рассказы',$text);
echo $text;
include ("../footer.php");
?>