Ver Mensaje Individual
  #5 (permalink)  
Antiguo 09/12/2004, 15:01
Avatar de hamiltons
hamiltons
Usuario no validado
 
Fecha de Ingreso: junio-2004
Ubicación: Lima (Peru)
Mensajes: 205
Antigüedad: 19 años, 11 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>