display images from database

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
kabucek
Forum Commoner
Posts: 50
Joined: Thu Sep 04, 2008 2:20 pm

display images from database

Post by kabucek »

hello all,

I got small query to pull out image from database.
It creates a table but second image is displayed below (verticaly).
I want it to be displayed horizontaly, how can I achieve that?
Thanks !!


$result2 = mysql_query("SELECT * FROM tbl_usr_gal_pic where usr_email ='$email1' ");

while($row2 = mysql_fetch_array($result2) )
{

echo "
<TABLE BORDER=0 CELLPADDING=4>
<TR>

<td>"; echo '<img src =\'' . $row2[3] .'\' width="140" height="160" border="0" >'; echo "</td>

<TD></TD> <TD> </TD>
</TR>
<TR>
<td>Name</td>
<TD> </TD> <TD> </TD>
</TR>
<TR>
<td>$1,000.00</td>
<TD> </TD> <TD> </TD>
</TR>


</TABLE>"; } ?>
jegan.aaodis
Forum Newbie
Posts: 15
Joined: Fri Oct 09, 2009 1:56 am

Re: display images from database

Post by jegan.aaodis »

Hi

Please find first where the image has been uploaded .
And also find the path of the image.
<img src="path/<?php echo $row[imagefieldname];?>" />

Thanks
Post Reply