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?

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.