How to retrieve images from MySQL database and display in an html tag

后端 未结 5 1265
春和景丽
春和景丽 2020-11-22 02:34

I created a MySQL database with a table using phpmyadmin. I created this table with a BLOB column to hold a jpeg file.

I have issues with regards to the php variabl

5条回答
  •  南笙
    南笙 (楼主)
    2020-11-22 03:29

    add $row = mysql_fetch_object($result); after your mysql_query();

    your html

提交回复
热议问题