Jump to content

[SOLVED] Almost Complete! Just Image Display Error Left


pcbytes

Recommended Posts

Well I got my file upload working. I can query the database and see the image in the database no problem.

 

The only problem left is calling the data on my website and displaying it in an image tag.

 

Currently it just shows a broken image link. (in mysql the blob data is stored in column 'content' and the filetype stored under column 'type')

 

here is my code.

 

index.php

<HTML>
<HEAD>
<BODY>
<img src="download.php?id=1">
</BODY>
</HEAD>
</HTML>

 

 

download.php

<?php
if($id) {

    mysql_connect("localhost","jason","password");
    mysql_select_db("test");

    $result = mysql_query("select content,type from upload where id=$id");

    $data = mysql_result($result,0,"content");
    $datatype = mysql_result($result,0,"type");

    Header( "Content-type: $datatype");
    print $data;
};
?>

 

 

For some reason my <img src= just keeps returning a broken image. Any ideas?

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.