Displaying an img from database using Codeigniter -


is there way display blob image database ?

i've tried not working:

 <?print'<img src="data:image/jpeg;base64,. base64_encode($img["imag"])">  '; ?> 

 echo '<img src="data:image/jpeg;base64,'.base64_encode( $img['imag'] ).'"/>'; 

try this


Comments

Popular posts from this blog

testing - Detect whether test has failed within fixture -

AbotX : How do you create a parallel crawler that stays on and can be added to at run time from new requests -

android - Create single AAR file from multiple modules using Gradle -