<?php
require('functions.php');
require 'config.php';
include('simple_html_dom.php');
$file = intval($_GET['id_file']);
$url = get_headers('http://7ba.ru/ex/download/'.$file, 1);
$url_file = $url['Location'][1];
header('Location: '.$url_file);
?>