Posts by Daniel Gustavo • 1 point
1 post
-
0
votes1
answer567
viewsA: DOMPDF Error generating pdf
basically the mistake you made was when you inserted autoload into your code. instead: require_once 'lib/dompdf/autoload.inc.php'; use this: require_once 'vendor/autoload.php'; this way you will be…