$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='
类型来显示。