Crea un archivo llamado, download.php y pon esto
Código PHP:
Ver original<?php
$file = $_GET['file'];
header("Content-disposition: attachment; filename=$file"); header("Content-type: application/octet-stream"); ?>
ahora crea otro llamado, iframe.php y pon esto
Código PHP:
Ver original<script>
window.onload = function(){
document.getElementById("autoid").click();
}
</script>
<a href="http://tuweb.com/download.php?=<?php echo $_GET['file']; ?>" id="autoid"></a>
y en la linea del iframe pon esto
Código PHP:
Ver originalecho "<iframe style='display:none;' src='http://tuwe.com/iframe.php?file=".$file."'></iframe>";
avisame si te funciono...