Tengo el siguiente código:
p
Código PHP:
ublic function view() {
if (file_exists($this->_pdfPath)) {
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="' . $this->_transactionId . '.pdf"');
header("Cache-Control: no-cache, must-revalidate");
$pdf = Zend_Pdf::load($this->_pdfPath);
echo $pdf->render();
}
return 0;
}
¿Véis algo mal?
Gracias!