
October 28th, 2004, 06:43 AM
|
|
Registered User
|
|
Join Date: Oct 2004
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
problems displaying iimage using img scr and path
cant display image - using img scr and path
------------------------------------------------------------------------
I have created a database in mysql I have an column which holds the image name only,example case row[0]= 100_88_9 however when i try to display image using img scr all i get is small image icon where the image shoud be here my code...
$loc="jpg";
$filepath="images";
....
....
while ($Row = mysql_fetch_row($sql))
{
echo("<tr><td><img scr =\"$filepath/$Row[0].$loc\"></td><td>$Row[1]</td></tr> ");
}
echo "</table>";
how can i display image from databse using filename and img scr
|