$id = intval($_GET['id']);
$url = 'http://erovideo.mobi/save.php?id='.$id;
$get_file_url = get_headers($url, 1);
$get = get_headers($get_file_url['Location'], 1);
foreach($get as $t => $k){
header($t.': '.$k);
}
header('Content-Disposition: attachment; filename='.$_SERVER['HTP_HOST'].'_'.basename($get['Location']));
readfile($get['Location']);