0

I develop a form in php which is about quiz. when i submit the form it shows

Unable to stream pdf: headers already sent' and shows variable is not defined. I tried more to find the error and solution. But couldn't find.

<?php
 require_once 'dompdf/autoload.inc.php';

//Reference the Dompdf namespace
use Dompdf\Dompdf;
$dompdf = new Dompdf();
$html = 'Here is my html code large number of line.';
$dompdf->loadHtml($html);
$dompdf->setPaper('A4','landscape');
$dompdf->render();

//Output the generated PDF
$dompdf->stream('codexworld',array('Attachment'=>0));
?>
eisbehr
  • 12,243
  • 7
  • 38
  • 63

0 Answers0