You can output headers with PHP, something like:
PHP Code:
header('Content-Type: application/force-download');
header('Content-Disposition: attachment; filename="'.$name.'"');
header("Content-Transfer-Encoding: binary");
header('Accept-Ranges: bytes');
where $name is the path to the file to be downloaded.