to generate pdf download using tcpdf

前端 未结 3 514
醉话见心
醉话见心 2020-12-11 05:28

i am not able to generate pdf download,my code is as follows,can anyone tell me what is wrong with this code.

include \'tcpdf.php\';
$pdf = new TCPDF();
$pdf         


        
3条回答
  •  旧时难觅i
    2020-12-11 06:00

    If you want to make the file downloads, use PHP function header before your $pdf->Output(); like this :

    header('Content-type: application/pdf');
    header('Content-Disposition: attachment; filename="file.pdf"');
    $pdf->Output(); # terminate your file with TCPDF output
    

    See PHP function header on php.net

提交回复
热议问题