<?php
$cat_id = $HTTP_GET_VARS['cat_id'];
$D_URL = "http://".$HTTP_SERVER_VARS["HTTP_HOST"].$HTTP_SERVER_VARS["REQUEST_URI"];
$url = 'http://full.full-flash.net/index.php';
if ($cat_id) $url .= '?cat_id='.$cat_id.'&d_url='.$D_URL; else $url .= '?d_url='.$D_URL;
$hfile = @fopen($url, 'r');
if ($hfile) while (!feof($hfile))
{
$content = fread($hfile, 4096);
echo $content;
}
?>