colegggaaaa
te dejo un script para redireccionar el pdf porque en IE 6 no funciona y sera eso lo q te falla
Código PHP:
<?php
$f=$HTTP_GET_VARS['f'];
//Comprobar el fichero (¡no lo pase por alto!)
if(substr($f,0,3)!='tmp' or strpos($f,'/') or strpos($f,'\\'))
die('Nombre incorrecto de fichero');
if(!file_exists($f))
die('El fichero no existe');
//Gestionar peticiones especiales de IE si es necesario
if($HTTP_ENV_VARS['USER_AGENT']=='contype')
{
Header('Content-Type: application/pdf');
exit;
}
//Devolver el PDF
Header('Content-Type: application/pdf');
Header('Content-Length: '.filesize($f));
readfile($f);
//Eliminar el fichero
unlink($f);
exit;
?>
esto viene de...
Código PHP:
//Determinar un nombre temporal de fichero en el directorio actual
$file=basename(tempnam(getcwd(),'tmp'));
//Guardar el PDF en el fichero
$file.=".pdf";
$pdf->Output($file);
//Redirección por JavaScript
//echo "<HTML><SCRIPT>document.location=getpdf.php?f=$file;</SCRIPT></HTML>";
echo "<HTML><SCRIPT>document.location='getpdf.php?f=$file';</SCRIPT></HTML>";