我正在尝试从 MySQL 表的 blob 字段中显示图像。看起来我在以下行中有某种错误。一旦我输入“header(“Content-type:image/jpeg”)”,事情就会变得一团糟,而不是显示网页,而是显示页面的所有源代码。
请让我知道如何更正。
<div class="image" align="left">
<a href="<?php header("Content-type: image/jpeg"); echo $rec['image']; ?>">
<img src="<?php echo $rec['image']; ?>" width="150" border="0"/>
</a>
</div><!-- image -->