View file mms_gallery_php/mms_template/get_file.php

File size: 209B
<?php
include('mms_settings.php');
$id=$_GET['id'];
$filepath = $mms_dir.'/'.$id;
header("Content-Type: application/octet-stream");
header("Content-Disposition: filename=$id");
readfile($filepath);
?>