Ver Mensaje Individual
  #5 (permalink)  
Antiguo 25/03/2019, 13:36
sk0rpi0n
 
Fecha de Ingreso: julio-2009
Mensajes: 121
Antigüedad: 14 años, 8 meses
Puntos: 1
Respuesta: Descargar PDF al hacer submit en formulario

Hola!

Prueba esto!

Código PHP:
$file __DIR__.'/archivo.pdf'

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="FILENAME"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' filesize("$file"));
ob_clean();
flush();
readfile($file);     
exit();