I'm able to echo the image pathname using the while loop. I can't seem to show the actual image. When I try to echo using the image tag it shows nothing.
$imagepath = $_SERVER['DOCUMENT_ROOT'].'/images/';
if ($result) {
while ($row = mysql_fetch_array($result)) {
echo $row['title'];
$img = $imagepath.$row['image'];
echo "<image src=\"". $imagepath.$row['image'] ."\">";
}
}