es estp??
esto es el contenido de por ejemplo down.php:
Código PHP:
<?php
$enlace = $path_a_tu_doc."/".$id;
header ("Content-Disposition: attachment; filename=".$id."nn");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
y para llamar al archivo q kieres bajar se ace de esta manera...
Código HTML:
down.php?id=imagen.jpg
espero q te sirva