vote up -3 vote down star

How can I insert an image in MySQL and then retrieve it using PHP?

I have limited experience in either area, and I could use a little code to get me started in figuring this out.

flag

49% accept rate
A little more specific question would be useful. – C. Ross Oct 28 at 12:16
1  
There's a nice tutorial here: phpriot.com/articles/images-in-mysql – Andomar Oct 28 at 12:25

2 Answers

vote up 3 vote down check

See this article. First you create a MySQL table to store images, like for example:

create table testblob (
    image_id        tinyint(3)  not null default '0',
    image_type      varchar(25) not null default '',
    image           blob        not null,
    image_size      varchar(25) not null default '',
    image_ctgy      varchar(25) not null default '',
    image_name      varchar(50) not null default ''
);

Then you can write an image to the database like:

$imgData = file_get_contents($filename);
$size = getimagesize($filename);
mysql_connect("localhost", "$username", "$password");
mysql_select_db ("$dbname");
$sql = "INSERT INTO testblob
    ( image_id , image_type ,image, image_size, image_name)
    VALUES
    ('', '{$size['mime']}', '{$imgData}', '{$size[3]}', 
     '{$_FILES['userfile']['name']}')";
mysql_query($sql);

You can display an image from the database in a web page with:

$link = mysql_connect("localhost", "username", "password");
mysql_select_db("testblob");
$sql = "SELECT image FROM testblob WHERE image_id=0";
$result = mysql_query("$sql");
header("Content-type: image/jpeg");
echo mysql_result($result, 0);
mysql_close($link);
link|flag
+1 for giving a straight answer and not moaning about OP's constrained use of english. – Kev Oct 28 at 16:34
vote up 11 vote down

General tips:

  • Read a MySQL tutorial.
  • Create MySQL table with binary blob column
  • Load image from disk, insert into database

To read out:

  • Select correct column from MySQL
  • Write to disk, display on screen, etc.

EDIT: Removed original comments on etiquette, because the question has been modified with a much nicer and humbler tone.

link|flag
2  
Normally I wouldn't upvote answers like this. But this one is amazing. +1 sir. – George Stocker Oct 28 at 13:33
1  
This answer may be less relevant now that the original question has been edited and re-opened. – csl Oct 28 at 15:26
-1 - instead of wasting time bemoaning the OP's 'ettiqutte', why not tidy up the question and give a straight answer. – Kev Oct 28 at 16:34
1  
@Kev: The original question was quite different than it was now, and that was what I answered to -- and the reason I've gotten 10 upvotes. Now, the situation is quite different after someone edited the question. – csl Oct 28 at 17:48
@csl - Un-downvoted. Even if you can't edit the OP question, wasting energy on being so critical just blows you karma. The FAQ does say "be nice" - even if other users aren't...otherwise we end up with a site full of pointless bickering. Me...I look past other users 'tone' and lack of English skills and try and answer the question. – Kev Oct 28 at 18:59
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.