pcbytes Posted March 20, 2007 Share Posted March 20, 2007 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? Quote Link to comment Share on other sites More sharing options...
pcbytes Posted March 20, 2007 Author Share Posted March 20, 2007 Wait LOL i feel soooo stupid i forgot to add $id = $_GET['id']; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.