473,803 Members | 3,899 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to display image from database?

35 New Member
i am doing a site for appliance center..
i need to display all the products that the company offers, but my problem is that i cant display ALL the images in my database.. the first entry on the database is the only one that displays..
i am using mysql as database

here's the code.. tell me what's my error and pls. kindly edit it..

**imgdata = it is where i store the image.. longblob is the data type
Expand|Select|Wrap|Line Numbers
  1. <?php 
  2.     $errmsg = "";
  3.     if (! @mysql_connect("localhost","root",""))
  4.         {
  5.                 $errmsg = "Cannot connect to database";
  6.                             }
  7.     @mysql_select_db("upload");
  8.  
  9.     $gotten = @mysql_query("select imgdata from pix");
  10.     header("Content-type: image/jpeg");
  11.     while ($row = mysql_fetch_array($gotten))
  12.     {
  13.         print $row['imgdata'];
  14.  
  15.     }
  16. mysql_free_result($gotten);
  17. ?>
Feb 6 '08 #1
48 41433
sandeepsandeep
50 New Member
hi
change in the mysql_fetch_arr ay()
Expand|Select|Wrap|Line Numbers
  1. <?php 
  2.     $errmsg = "";
  3.     if (! @mysql_connect("localhost","root",""))
  4.         {
  5.                 $errmsg = "Cannot connect to database";
  6.                             }
  7.     @mysql_select_db("upload");
  8.  
  9.     $gotten = @mysql_query("select imgdata from pix");
  10.     header("Content-type: image/jpeg");
  11.  
  12. while ($row = mysql_fetch_array($gotten,MYSQL_ASSOC))
Feb 6 '08 #2
harshmaul
490 Recognized Expert Contributor
Hi,
the problem here is that you are only able to use the content disposition to send out one file.
As each blob stores a different image you will need another page thats loops through the DB, and displays the content disposition page.

Steps to achieve this....
Firstly change your select query to be based on the ID in the table, and get that ID from the query string ($_GET['ID']) or something like that.

Secondly make another page and in that page loop through the results from the table printing out an image with the content disposition page and an ID in the query string.

I can go in to more detail if you like. let me know
Feb 6 '08 #3
mirianCalin
35 New Member
Hi,
the problem here is that you are only able to use the content disposition to send out one file.
As each blob stores a different image you will need another page thats loops through the DB, and displays the content disposition page.

Steps to achieve this....
Firstly change your select query to be based on the ID in the table, and get that ID from the query string ($_GET['ID']) or something like that.

Secondly make another page and in that page loop through the results from the table printing out an image with the content disposition page and an ID in the query string.

I can go in to more detail if you like. let me know
yes, please help me..
and can you show me the code?
im really new with php and im having a hard time..
thanks for the reply..
very much appreciated
Feb 7 '08 #4
mirianCalin
35 New Member
hi
change in the mysql_fetch_arr ay()
Expand|Select|Wrap|Line Numbers
  1. <?php 
  2.     $errmsg = "";
  3.     if (! @mysql_connect("localhost","root",""))
  4.         {
  5.                 $errmsg = "Cannot connect to database";
  6.                             }
  7.     @mysql_select_db("upload");
  8.  
  9.     $gotten = @mysql_query("select imgdata from pix");
  10.     header("Content-type: image/jpeg");
  11.  
  12. while ($row = mysql_fetch_array($gotten,MYSQL_ASSOC))
hi!! thanks for the reply..
very much appreciated..
i'll try this tomorrow and will inform you about the result..
thanks again!!
Feb 7 '08 #5
harshmaul
490 Recognized Expert Contributor
So you need two pages.

The first page uses content disposition to output an image given an ID in the quesry string just like you have already only modify the query to select an image based on the query string. Like this.....


Call this page pix.php...

Expand|Select|Wrap|Line Numbers
  1. <?php 
  2. $errmsg = "";
  3. if (! @mysql_connect("localhost","root",""))
  4. {
  5. $errmsg = "Cannot connect to database";
  6. }
  7. @mysql_select_db("upload");
  8.  
  9. if (IsSet($_GET['pixID'])){
  10. $gotten = @mysql_query("select imgdata from pix where pixID = ".$_GET['pixID']);
  11. header("Content-type: image/jpeg");
  12. while ($row = mysql_fetch_array($gotten))
  13. {
  14. print $row['imgdata'];
  15.  
  16. }
  17. mysql_free_result($gotten);
  18. }
  19. ?>

the other page will have a list of img tags with the source pointing to a variation of pix.php and a query string value.


call this page list.php


Expand|Select|Wrap|Line Numbers
  1. <?php
  2. $errmsg = "";
  3. if (! @mysql_connect("localhost","root",""))
  4. {
  5. $errmsg = "Cannot connect to database";
  6. }
  7. @mysql_select_db("upload");
  8.  
  9. $strSQL = "select * from pix";
  10. $rsPix = mysql_query($strSQL);
  11. $numRows = mysql_numrows($rsPix);
  12. $i = 0;
  13.  
  14. while($i < $numRows){
  15. ?>
  16. <img src="pix.php?pixID=<?php echo mysql_result($rsPix,$i,"pixID"); ?>"/>
  17. <?php
  18. $i++;
  19. }
  20. ?>
Now put these into the same folder and it should work. i haven't tested you may need to debug slightly
Feb 7 '08 #6
mirianCalin
35 New Member
So you need two pages.

The first page uses content disposition to output an image given an ID in the quesry string just like you have already only modify the query to select an image based on the query string. Like this.....


Call this page pix.php...

Expand|Select|Wrap|Line Numbers
  1. <?php 
  2. $errmsg = "";
  3. if (! @mysql_connect("localhost","root",""))
  4. {
  5. $errmsg = "Cannot connect to database";
  6. }
  7. @mysql_select_db("upload");
  8.  
  9. if (IsSet($_GET['pixID'])){
  10. $gotten = @mysql_query("select imgdata from pix where pixID = ".$_GET['pixID']);
  11. header("Content-type: image/jpeg");
  12. while ($row = mysql_fetch_array($gotten))
  13. {
  14. print $row['imgdata'];
  15.  
  16. }
  17. mysql_free_result($gotten);
  18. }
  19. ?>

the other page will have a list of img tags with the source pointing to a variation of pix.php and a query string value.


call this page list.php


Expand|Select|Wrap|Line Numbers
  1. <?php
  2. $errmsg = "";
  3. if (! @mysql_connect("localhost","root",""))
  4. {
  5. $errmsg = "Cannot connect to database";
  6. }
  7. @mysql_select_db("upload");
  8.  
  9. $strSQL = "select * from pix";
  10. $rsPix = mysql_query($strSQL);
  11. $numRows = mysql_numrows($rsPix);
  12. $i = 0;
  13.  
  14. while($i < $numRows){
  15. ?>
  16. <img src="pix.php?pixID=<?php echo mysql_result($rsPix,$i,"pixID"); ?>"/>
  17. <?php
  18. $i++;
  19. }
  20. ?>
Now put these into the same folder and it should work. i haven't tested you may need to debug slightly
hey, thank you very much!! it works!!
i hope i can ask you again for further problems.. :-)
thank you..
thank you..
thank you!!
Feb 8 '08 #7
harshmaul
490 Recognized Expert Contributor
hi,
absolutly no problem. i love to help. But make sure you ask in the forums so every one can learn.
Feb 8 '08 #8
mirianCalin
35 New Member
hi,
absolutly no problem. i love to help. But make sure you ask in the forums so every one can learn.
i have another problem..
i also want to display the corresponding title of the image..
"title" is the field that handles the title of the image in my table
Feb 9 '08 #9
harshmaul
490 Recognized Expert Contributor
i have another problem..
i also want to display the corresponding title of the image..
"title" is the field that handles the title of the image in my table
Hi again...

Something like this..... for the page which displays all the images

Expand|Select|Wrap|Line Numbers
  1. <?php
  2. $errmsg = "";
  3. if (! @mysql_connect("localhost","root",""))
  4. {
  5. $errmsg = "Cannot connect to database";
  6. }
  7. @mysql_select_db("upload");
  8.  
  9. $strSQL = "select * from pix";
  10. $rsPix = mysql_query($strSQL);
  11. $numRows = mysql_numrows($rsPix);
  12. $i = 0;
  13.  
  14. while($i < $numRows){
  15. ?>
  16. <h1><?php echo mysql_result($rsPix,$i,"pixTitle"); ?></h1>
  17. <img src="pix.php?pixID=<?php echo mysql_result($rsPix,$i,"pixID"); ?>"/>
  18. <?php
  19. $i++;
  20. }
  21. ?>
Feb 9 '08 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

1
5888
by: Tan | last post by:
Hi I am desperate for any help with display image in Gridview I have a gridview contain surname , forename ..... and image. I could not display image as my database store the column image as image not text. I have tried all sort of things like converting the columns image to tempate so on and still could display image
3
3339
by: harish | last post by:
Hi friends I am facing problem as follow I can't display image from SQL Database to Picture box Control. Here are the codes that I am writing Dim arrPicture() As Byte = _
2
5015
by: RedSouljaz | last post by:
Hi, How to display image that was saved in database ms sql server 2000 into picture box. The field type that I use in database is Images I can save to database but cannot show from database. Thanks
3
5248
by: den 2005 | last post by:
Hi everyone, Here is code working on..Trying to insert record with a column with Image or VarBinary datatype in sql database from a existing jpeg image file, then retrieve this image from database and display it in a Image web control dynamically(at runtime). The process after being displayed in the web control, user click insert/add button, it converts the image(jpeg) file to bytes and store it the database with Image or VarBinary...
7
5411
by: eholz1 | last post by:
Hello Group, Perhaps you can help me. I have a mysql db, that holds images. Images are encoded using base64_decode/encode, etc. Image data seems fine. I have a view.php page that is supposed to show the image, and an image.php page that accesses the database, retrives the image data, and then (theoretically) prints the decoded data to the page. below is the view.php page code: problem area the img tag src no
7
4223
by: alexseow | last post by:
Query.asp <%@ LANGUAGE="VBSCRIPT" %> <!-- #include file="../../includes/dbconn.asp"--> <% dim MyRs, sqlstr, MyConn Response.Expires = 0 Response.Buffer = TRUE Response.Clear
1
1333
by: shalini328 | last post by:
I am using ASP.net 1.1 C# and database is MS access.Can you tell me how can i display image from database
1
3285
by: saadkhan | last post by:
I want to display image in <img> tag using database. I just need to know that how could i be able to define path or whatever to <img> tag. I have no probem in making queries to database.....plz help
5
2544
by: SafaaDalloul | last post by:
Please I want know How I can Display Image from database randomly when the web page refresh in Asp.net by C# code
1
3231
by: Laxmikant | last post by:
I am using VB6 as front end, Access 2007 as backend, crystal report 8 for reporting. I want to display image on my crystal report output, based on path saved in a table in Access Database. Is it possible to do so? If yes, how? Help ASAP.. Thanks in advance.
0
9700
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9564
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10310
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10292
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9121
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6841
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5498
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4275
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2970
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.