Jump to content

retrieving images from mysql


benzeina

Recommended Posts

Hi everyone,

I've been trying this for two days. I feel hopeless :(. Basically I managed to load an image to my mysql. the problem is when displaying the image. It returns about 400 lines of  this --->  "x� ��yr��{�ΐN����E<�l>A�fLF������".

here is my image insertion:

if ($_POST['Submit']) {
if ($_POST['MAX_FILE_SIZE'] >= $_FILES['file']['size']) {
//print_r($_FILES);
mysql_connect("localhost", "username", "password") or die(mysql_error());
mysql_select_db("Vehicles");

$photo = addslashes(fread(fopen($_FILES['file']['tmp_name'], "r"), $_FILES['file']['size']));
$query = sprintf("INSERT INTO Cars(Picture, FileType) VALUES ('%s', '%s')", $photo, $_FILES['file']['type']);

Is there something missing. I do have the 'Picture' field of type BLOB !

and i use this to retrieve it:
<img src="<?php echo $result_ar['Picture']; ?>" width="144" height="108" border="0" id="Image1" /></a></a></td>

I would really appreciate your help. Thank you so much in advance.

Ben
Link to comment
Share on other sites

You can't just put an image into the src attribute.  The script that displays the picture needs to do nothing else but display that picture.. then another script needs to call that one.

Script 1:

[code]Get picture from database
header('Content-type: image/gif'); or whatever the image is
print $result_ar['Picture'];[/code]

Script 2:
[code]<img src="/script1?img=Image1" width="144" height="108" border="0" id="Image1" />[/url][/url]</td>[/code]

Does that makes sense?  The HTML in script 2 says to call script1 to get the image for display.  It can't be done in a single script (not any way I know of)
Link to comment
Share on other sites

great i will give this a try. I asked few people about this. There is one way you can do this in one script which is using base64 encoding the displaying it. or something like that. but its not supported by all browsers.  Not trying to be an expert, just wanted to share as you just did. Thank  you :)
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.