The following code is not working:$html = “
WELCOME TO PHP Dompdf
”;use Dompdf\Dompdf;ob_get_clean(); // Clear Buffer - this is very important!!!$document = new Dompdf();$document->loadHtml($html);
//$document->setPaper(‘A4’, ‘portrait’);
$document->setPaper(“A4”, “$orientation”);
$document->render();
$document->stream(“Payslips”, array(“Attachment”=>0));