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? Link to comment https://forums.phpfreaks.com/topic/43440-solved-almost-complete-just-image-display-error-left/ 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']; Link to comment https://forums.phpfreaks.com/topic/43440-solved-almost-complete-just-image-display-error-left/#findComment-210947 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.