Jump to content

IMAGE DISPLAYING FROM DATABASE


baber_abbasi

Recommended Posts

I am using a script to display image from database. I want to display all images from my table onto the page. The code I am using is following and I will appreciate ur help if necessary modifications are made into it as required.

 

\"

$dbServer = \"localhost\";

$dbDatabase = \"blob\";

$dbUser = \"root\";

$dbPass = \"\";

 

$sConn = mysql_connect($dbServer, $dbUser, $dbPass)

or die(\"Couldn\'t connect to database server\");

 

$dConn = mysql_select_db($dbDatabase, $sConn)

or die(\"Couldn\'t connect to database $dbDatabase\");

 

$result = mysql_query(\"SELECT * FROM myBlobs\");

if(mysql_num_rows($result) > 0)

{

$row = mysql_fetch_array($result);

do{

 

$dd = $row[\'blobData\'];

print($dd.\"<BR>\");

$row = mysql_fetch_array($result);

}while($row);

 

}else{echo\"No record\";}

\"

 

From above code, it displays only first image and don\'t increment to next which it should be. Please tell me how sould I resolve this problem.

 

 

Thankx

Link to comment
Share on other sites

Try this :roll:

 

$result = mysql_query("SELECT * FROM myBlobs"); 



if(mysql_num_rows($result) > \'0\') 

{ 

   do{ 



             $dd = $row[\'blobData\']; 

              print($dd."<BR>"); 

               $row = mysql_fetch_array($result); 

        }while($row=mysql_fetch_array($result)); 



}else{echo"No record";} 

Link to comment
Share on other sites

Hope thsi works :roll:

 

$result = mysql_query("SELECT * FROM myBlobs"); 



if(mysql_num_rows($result) > \'0\') 

{ 

   do{ 



             $dd = $row[\'blobData\']; 

              print($dd."<BR>"); 

       }while($row=mysql_fetch_array($result)); 



}else{echo"No record";}  

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.