图像无法显示,因为它包含错误

时间:2015-05-18 19:59:11

标签: php mysql blob

<?php
//include database connection
include("include/db.php");

//select the image
$query = "SELECT image FROM fresult WHERE result_id = 1";

$result = mysql_query($query) or die('SQL error');


while($row1 = mysql_fetch_array($result, MYSQL_ASSOC))
{

    header("Content-type: image/jpg");


    //display the image data
    print $row1['image'];
    //exit;
}

?>

这段代码有什么问题?我不明白。

我尝试使用简单的代码来检索图像。我使用xampp,SQL blob。

1 个答案:

答案 0 :(得分:1)

从我看到的情况来看,看起来你要做的就是将标题切换为:

URL_STRING + = textInsideYourTextView;

header("Content-type: image/jpeg"); 不是内容类型标头。

如果您在评论中发布图像数据,我可能会提供更多帮助。

希望这有帮助。