
09/12/2004, 15:01
|
 | Usuario no validado | | Fecha de Ingreso: junio-2004 Ubicación: Lima (Peru)
Mensajes: 205
Antigüedad: 20 años, 9 meses Puntos: 0 | |
¿Entonces podria ser algo asi?
script.php
<?php
$file = "archivo.pdf"; $url = $path_a_tu_pdf."/".$file;
header ("Content-Disposition: attachment; filename=".$file." ");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($url));readfile($url);
?>
Y el link <a href="script.php?manual">Manual</a> |