A lo mejor te refieres a que aparezca la ventana de descargar un archivo, pero nunca descargarlo directamente sin previo permiso...
Podría ser justo lo que se puso en el otro post:
Código PHP:
<?php
$enlace =$id;
header ("Content-Disposition: attachment; filename=".$id);
header ("Content-Type: application/download ");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
![Adios](http://static.forosdelweb.com/fdwtheme/images/smilies/adios.gif)
suerte