我想知道如果有任何方法可以将图像加载到像
这样的表中create table x(id int auto_increment unique, `pic blob` (I may not be right) and here at load to have an URL or smth like that );*
答案 0 :(得分:0)
你可以试试这个:
INSERT INTO x(id,pic) VALUES(1,LOAD_FILE('C:/Desktop/images/test.jpg'));
然后使用PHP(例如),您可以阅读和打印
/*
Read from database
...
... */
echo '<img src="data:image/jpeg;base64,'.base64_encode( $result['pic'] ).'"/>';
供参考LOAD_FILE