Hi when im trying to display an image using php and mysql it only apears as the default no image found image is there anything im doing wrong here. i read a couple of different tutorials but they all seem to work where as my way does not
function DisplayImages($link){
$qry = mysqli_query($link,"select * from images");
while($row= mysqli_fetch_array($qry)){
echo $row["name"];
echo '<img src="<?php echo $row["image"]"/>';
}
}
the images are uploaded as longblobs