2
I’m having a problem generating pdf, but is giving this error:
Notice: Undefined variable: mdpf in C:\xampp\htdocs\devweb\sistemas\painel\gerar-pdf.php on line 9
Fatal error: Uncaught Error: Call to a member function WriteHTML() on null in C:\xampp\htdocs\devweb\sistemas\painel\gerar-pdf.php:9 Stack trace: #0 {main} thrown in C:\xampp\htdocs\devweb\sistemas\painel\gerar-pdf.php on line 9
This is code I wrote:
<?php
ob_start();
include('templateFinanceiro.php');
$conteudo = ob_get_contents();
ob_end_clean();
require ('../vendor/autoload.php');
$mpdf = new \Mpdf\Mpdf();
$mdpf->WriteHTML($conteudo);
$mdpf->Output();
?>
If anyone can help, I’d really appreciate it.
arranged here.. it worked. thank you very much!!
– Guilherme Alonso