Search code examples
phppdfdompdf

view pdf without downloading using dompdf


I generated a PDF using the dompdf library and used this:

$dompdf->stream('my.pdf',array('Attachment'=>0));

to force the browser to let the user view the PDF before downloading. But it's not working. A Google search isn't bringing up any answers either. Can anyone help?


Solution

  • Try using the below code. Let me know are you create data from form or html file data.

    $dompdf->stream("dompdf_out.pdf", array("Attachment" => false));
    
    exit(0);