не отображается картинка из БД она есть, но её нету
Когда пользователь загружает изображение в БД, оно отображается примерно так:

if ($posts){
echo ' <section class="container-fluid section-post">
<div class="header-menu">
<a href="index.php" class="logo">Wires</a>
<div class="header-button">
<a href="index.php" class="button" style="margin: 0 30px 0 30px;">На главную</a>
<a href="signup.php" class="button login">Войти / Регистрация</a>
<a href="logout.php" class="button logout">Выйти</a>
</div>
</div>
<div class="content-post">
<h1 class="title-content">'.$posts['title'].'</h1>
<img src="'.$posts['image'].'" alt="" class="img-posts">
<p>'.$posts['content'].'</p>
</div>
</section>';
}else{
echo "Возникла ошибка";
}
Прошу у вас помощи, буду очень благодарен!