I've got a small problem. I'm trying to save image, and retrive it from a database table. I've got a table with BLOB column, where images are saved.
Here is the script:
INSERT INTO male_users (image) VALUES ('$image')
And everything works fine, image is saved in database. But then i try to retrive it by this code:
echo " Image: <img src='" . $row["image"]. "' />"
But image is not displaying there is only an image name, for example: "DSC0123.jpg", and thats all.
Thanks for help in advance! Best regards