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));
?>