使用PHP从Mysqli显示blob图像

时间:2014-12-22 05:23:33

标签: php mysql mysqli

 $dbc=mysqli_connect('localhost','root','','db')

$query="SELECT Binfile, Filetype FROM imagetable where imgid='$imgid'" ;
$result=mysqli_query($dbc,$query);
$row=mysqli_fetch_assoc($result);

$image=$row['Binfile'];
header("Content-type:".$row['Filetype']);

echo $image;  

这是我用来显示图像的代码。 但它给出了像

这样的错误

无法显示图片“http://lacalhost//viewimage.php?imgid=1”,因为它包含错误。

帮我删除此错误并显示图片......

我想知道我是否可以使用echo'img src='类型来显示。

0 个答案:

没有答案