I am trying to display some images from Mysql database (in phpmyadmin) with PHP.
I used this line of code but this does not work.
I have declared $image
as follows:
$image=$row['picture'];
I used the following line to display images:
<?php echo "<img src='assets/img/termekek/'.$image'.png'>";?>
but this does not work. Can someone help me?