Ver Mensaje Individual
  #17 (permalink)  
Antiguo 15/07/2014, 03:30
specnaz
 
Fecha de Ingreso: octubre-2005
Mensajes: 31
Antigüedad: 19 años
Puntos: 2
Respuesta: Problema para visualizar pdf.

Cita:
Iniciado por bookmaster Ver Mensaje
Hay un pequeño fallo en mi código, ya que se envían los headers y hay que limpiarlos primero por lo que debería de ser:
Código PHP:
        header_remove();
        
header('Content-type: application/pdf');
        
header('Content-Disposition: inline; filename="' $file '"');
        
readfile($file);
        exit; 
Ahora sí que funciona.
Un saludo.