Everything is working well. When I delete Code for Retrieving image then I get user details in table and when I put the code to retrieve image along with the code of printing us
You could Base64-encode your image data and use the data URI in the src
attribute of an img
tag, e.g. <img src="data:image/png;base64,iVBORw0KGgoAAAANS... (the Base64 encoded image data) ...8bgAAAAASUVORK5CYII=”>
.
Few notes:
src
attribute. See the Important Notes part in the above linked page.