Jump to content

retrieve images from mysql


benzeina

Recommended Posts

Hi everyone,

I've been trying this for two days. I feel hopeless Sad. 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" />[/url][/url]</td>

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

Ben
Link to comment
Share on other sites

Well, what you've stored in the DB is the actual binary content of your file -- you'll need to return this information, with appropriate headers, if you want to serve it on-the-fly.  This will necessitate another script that streams this data appropriately, which you will then call with via src attribute on your IMG tag (and simply pass it a UID or other unique value to lookup).  I've seen many examples of such a code snippet posted in this forum recently as well.
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.