20/12/2005, 15:15
|
| | Fecha de Ingreso: febrero-2005
Mensajes: 187
Antigüedad: 19 años, 9 meses Puntos: 2 | |
Porque no obligas la descarga en vez de hacer un link al archivo????
mira este codigo, asi no te quedaria la url guardada en tu browser.
<?php
$id = "archivo.doc";
$enlace = $path_a_tu_doc."/".$id;
header ("Content-Disposition: attachment; filename=".$id."\n\n");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?> |