Images in FPDF using php and MySqli -


my other question (using php variable before mysql query) getting long.

i’m trying make pdf file images in using fpdf in php mysqli. when type in mysqli query without parameters (just plain text), pdf rendered fine, 100 images (all same size) in it. when use php parameters in mysqli query, pdf keeps “loading...” (the loading pictogram not filling up).

this work:

echo '<img src="fotos/geenfoto.jpg" width=100>'; 

this doesn't:

$pdf->image("fotos/geenfoto.jpg",0,0,30); 

i tried making pdf 100 pictures, tried adding 1 picture well, isn’t working either way.

when change to:

//$pdf->image("fotos/geenfoto.jpg",0,0,30); 

the rest of pdf rendered.

i’ve spent way time on already, i’d know answer…


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -