Ver Mensaje Individual
  #5 (permalink)  
Antiguo 05/03/2008, 09:19
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Problèma download pdf PHP

La función ociFetchInfo ya esta fuera del arbol de PHP por problemas, te recomiendo hagas esto mejor:
Código PHP:
$row oci_fetch_row$ordre );
if( 
$row ) {
         
$var $row[0];
         
header('Content-Type: application/pdf;');
         
header('Content-Disposition: attachment; filename="fichierTelechargé.pdf"');
         
header('Content-Length: '.strlen($var));
         echo 
$var;

Saludos.