如何使用php从数据库显示图像

前端之家收集整理的这篇文章主要介绍了如何使用php从数据库显示图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图显示来自数据库的图像,我无法显示图像.但它显示像这样的用户1.jpg请看我的代码可以指导我如何显示图像.

$sqlimage = "SELECT image FROM userdetail where `id` = $id1";
$imageresult1 = MysqL_query($sqlimage);

while($rows = MysqL_fetch_assoc($imageresult1))
{       
    $image = $rows['image'];    
    print $image;
}
最佳答案

Displaying an image from MysqL Db.

$db = MysqLi_connect("localhost","root","","DbName"); 
$sql = "SELECT * FROM products WHERE id = $id";
$sth = $db->query($sql);
$result=MysqLi_fetch_array($sth);
echo '
原文链接:https://www.f2er.com/mysql/433797.html

猜你在找的MySQL相关文章