I'm having problem with showing image which is stored in database as a blob. I searched in many forums, but couldn't find any answer.
I separated the code into two files. In index.php i insert image and try to load it from get_image.php file.
Here is index.php
<form action="index.php" method="POST" enctype="multipart/form-data">
File:
<input type="file" name="image"> <input type="submit" value="upload">
</form>
<?php
$file = $_FILES['image']['tmp_name'];
if(!isset($file)){
echo "Please select an image.";
}
else{
$image_name = mysql_real_escape_string($_FILES['image']['name']);
$image = mysql_real_escape_string(file_get_contents($_FILES['image']['tmp_name']));
$imageType = mysql_real_escape_string($_FILES['image']['type']);
$image_size = getimagesize($_FILES['image']['tmp_name']);
if($image_size == FALSE){
echo "That's not an image";
}
else{
if (!$insert = mysql_query("UPDATE 'table_name' SET `image` = '$image' WHERE 'row_name' = '$student_id'")){
echo "Problem updating image";
}
else{
echo "<img src=get_image.php>";
}
}
}
?>
And get_image.php
<?php
$query = mysql_query("SELECT image FROM table_name WHERE student_id = 51686");
while($row= mysql_fetch_assoc($query)){
$imageData = $row['image'];
}
header("Content-type: image/png");
echo $imageData;
?>
Can anyone help please. My php version is 5.2 At the output there is image icon, but no image. If I right click and try to save it as image, it's not an image format, it's saved as get_image.php. So I don't know what is the problem.