显示从MySQL数据库存储为BLOB数据的所有图像

时间:2014-06-14 19:09:12

标签: php mysql

我已经使用PHP将一些图像上传到MySQL。每次我修改HTML img标签中的id时,我也可以显示1个图像。 但是现在我试图显示存储在MySql数据库中的所有图像,问题是当我使用' While Loop'它只显示文本列,而不是MySQL中存储为BLOB数据的图像...

我有一个名为: my_db 的数据库 我有一个名为: blob 的表 我的表格中有3列: id name & 图像

这里是index.php的代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>

<body>
<form action="index.php" method="POST" enctype="multipart/form-data">
    <input type="file" name="image"><input type="submit" name="submit" value="Upload">
</form>
<?php

if(isset($_POST['submit']))
{
    mysql_connect("127.0.0.1","root","");
    mysql_select_db("my_db");

    $imageName = mysql_real_escape_string($_FILES["image"]["name"]);
    $imageData = mysql_real_escape_string(file_get_contents($_FILES["image"]["tmp_name"]));
    $imageType = mysql_real_escape_string($_FILES["image"]["type"]);

    if(substr($imageType,0,5) == "image")
    {
        mysql_query("INSERT INTO `blob` VALUES('','$imageName','$imageData')");
        echo "Image Uploaded!";
    }
    else
    {
        echo "Only images are allowed!";
    }

}

?>

<img src="showimage.php?id=11">

</body>
</html>

以下是showimage.php的代码:

<?php

mysql_connect("127.0.0.1","root","");
mysql_select_db("my_db");

if(isset($_GET['id']))
{
    $id = mysql_real_escape_string($_GET['id']);
    $query = mysql_query("SELECT * FROM `blob` WHERE `id`='$id'");
    while($row = mysql_fetch_assoc($query))
    {
        $imageData = $row["image"];
    }
    header("content-type: image/jpeg");
    echo $imageData;
}
else
{
    echo "Error!";
}

?>

提前致谢: - )

3 个答案:

答案 0 :(得分:3)

首先,您需要删除if(isset($_GET['id'])语句,因为您要显示所有图像。

接下来,通过将查询更改为不带id的查询来查询所有图像

$query = mysql_query("select * from `blob`");

接下来,将图像数据存储到数组中。

$images = array();
while ($row = mysql_fetch_assoc($query)) {
  $images[] = $row['image'];
}

最后,显示所有图像。 (获得了显示来自here的多个blob的代码)

/* header should be removed
   header("content-type: image/jpeg"); */
foreach ($images as $image) {
  echo '<img src="data:image/jpeg;base64,'. base64_encode($image) .'" />';
}

答案 1 :(得分:0)

在控制器中:

function display()
{
    $imagename= mysql_real_escape_string($_FILES["userfile"]["name"]);

    $imagedata= mysql_real_escape_string(file_get_contents($_FILES["userfile"]["tmp_name"]));
    $imagetype= mysql_real_escape_string($_FILES["userfile"]["type"]);

    $imagesize= mysql_real_escape_string($_FILES["userfile"]["size"]);
    $imagedetails = array(  'image_name'    => $imagename,
                                'image_data'   => $imagedata
            );
   // $insertedid =$this->model_data->insert_image($imagedetails);
    $this->load->model('model_data');   
    $data['imagee'] = $this->model_data->display_pic($insertedid);  // variable data holds image                
    $this->load->view('profile_view',$data);            
}   

模特:

function display_pic($insertedid)
{   
    $query = mysql_query("SELECT * FROM employee_image WHERE id = ".$insertedid);
    $row = mysql_fetch_assoc($query);
    $this->db->stop_cache();
    return $row['image_data'];
}

function insert_image($imagedetails) { 

    $this->db->insert($this->table_name2,$imagedetails);            
    $id=$this->db->insert_id(); 
    return $id;
}

答案 2 :(得分:-2)

当我删除base64_encode时,为什么这段代码没有在codeigniter中运行,所以这个代码运行完全也是同样的事情在file_get_contents中,为什么这两个函数都没有在codeigniter中运行

$imagedata= mysql_real_escape_string(base64_encode(file_get_contents($_FILES["userfile"]["tmp_name"])));