Всем спасибо за оперативность. Разобрался
include_once ('include/connectdb.php');
echo '<h1 style="text-align: center">'.$H2.'</h1>';
$res = $mysqli->query("SELECT *FROM `news` ORDER BY `id` DESC ");//Запрос в базу по категории
while($row = mysqli_fetch_array($res)){
$id = $row['id'];
$H2 = $row['H'].'<br>';
$image = $row['Thumbnail'].'';
$smallnews = $row['SmallNews'].'<br>';
?>
<div id="news">
<div class="smallnews">
<?php
echo "<h3>
<div class='small-news-header'>".$H2."</h3>
</div>
<div class='news-image-small'>
<img src='images/".$image."' width=100px width=100px/>
</div>
<div class='small-news-text'>
<p>".$smallnews."</p><a href='bignews.php?id=".$id."'>Читать далее</a>
</div>
</div>
</div>";
}
?>