ob_start();
require_once 'dompdfautoload.inc.php';
use DompdfDompdf;
//use DompdfDompdf;
// instantiate and use the dompdf class
$dompdf = new DOMPDF();
$html = "
print_r($_POST);
";
$dompdf->loadHtml($html);
$dompdf->setPaper('A4', 'landscape');
$dompdf->render();
$pdf = $dompdf->output();
file_put_contents("page.pdf", $pdf);
?>
<a href="./page.pdf" download="page.pdf">Download the pdf</a>
<?php
exit;
?>
I try to do downloadable PDF script but getting parse error.
You have problem with use of use🙂
Try this code: