download.php 256 Bytes
if(isset($_GET['file']))
{
 // $_GET['file'] ............
 header("Content-type:application");
 header("Content-Length: " .(string)(filesize($_GET['file'])));
 header("Content-Disposition: attachment; filename=".$_GET['file']);
 readfile($_GET['file']);
}