I am attempting to display information from a database onto a webpage. As shown below, the word “Description” is selected from the database and displayed without error but the image will not display. Any help would be appreciated.

<?php
    include_once 'connection.php';
    $ID = mysqli_real_escape_string($con, $_GET['ID']);
    $sql = "SELECT * FROM items WHERE ID='$ID'";
    $result = mysqli_query($con, $sql);
    $row = mysqli_fetch_array($result);
?>
<!DOCTYPE html>
<html>
    <head>
        <meta charset='utf-8'>
    </head>
    <body>
        <?php echo $row['Discription']?>
        <img src='images/<?php echo $row['Image']?>'>
    </body>
</html>