Well I need to generate a PDF from a BLOB field saved in the database, my idea is to be able to upload PDF to BLOB so it does not take up disk space and make it easier to transport it.
I'm doing the following:
include("../pdf/mpdf60/mpdf.php");
$mpdf=new mPDF();
$mpdf->WriteHTML($registros->BLO_PDFXX_ARQUI);
$mpdf->Output();
exit;
where $registros->BLO_PDFXX_ARQUI
is the code I'm trying to do. But here comes the question, with MPDF do I have to do this?
My other doubt is there is any managed one that would facilitate me in this case of BLOB content?