i\'m having problems with dompdf, the images i insert wont read when converted to pdf file
when i load it to dompdf using
php method
Are you loading this code directly into dompdf:
$html = '
" />';
$dompdf->load_html($html);
or
$dompdf->load_html_file(foo.php);
Or are you loading the processed PHP document:
$html = '
';
$dompdf->load_html($html);
or
$dompdf->load_html_file('http://example.com/foo.php');
If the PHP content is not being processed prior to loading it into dompdf then it will not be processed at all. By default (as of 0.6.0) does not process any PHP code in the HTML document. You would have to set DOMPDF_ENABLE_PHP to true.