且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何显示存储在MySQL数据库中的图像?

更新时间:2023-02-24 08:22:24

<?php 
$image = $row['myimage']; 
header("Content-type: image/gif");
print $image; 
exit; 
>?

但是存储路径似乎更容易......

But it seems easier just to store the path...