画像からわかるように、テーブルの最初の行は実際のテーブルにのみ含まれています。よくわからないコードエラーかもしれませんか?
$selectNews = $PDO->query("SELECT * FROM `news`");
echo '<table class="table">';
echo '<thead>';
echo '<th>Update Number</th>';
echo '<th>Title</th>';
echo '<th>Description</th>';
echo '<th>Created On</th>';
echo '<th>Created By</th>';
echo '</thead>';
while ($results = $selectNews->fetch(PDO::FETCH_ASSOC)) {
echo "<tbody>";
echo "<tr><td>";
echo $results['ID']."</td><td>";
echo $results['Title']."</td><td>";
echo $results['Description']."</td><td>";
echo date('d/m/Y g:i:s A', strtotime($results['Time']))."</td><td>";
echo $results['Creater']."</td></tr>";
echo "</tbody>";
echo "</table>";
}