<?php while($art = mysqli_fetch_assoc($articles)){ ?>
<div class="text">
<div class="article">
<h2><?php echo $art['title']; ?></h2>
<p><?php echo $art['text']; ?></p>
</div>
</div>
<?php } ?>
<div class="text">
<div class="article">
<h2><?php echo $art[0]['title']; ?></h2>
<p><?php echo $art[0]['text']; ?></p>
</div>
</div>