Hello! Help please, let's say there is a displayable news from the database consisting of, say, 1050 words, how to make sure that the news itself has page pagination (let's say 100 words per page) Here is the news output code:
<?php $res=mysql_query("SELECT * FROM `news` ORDER BY `id` DESC"); while($myrow=mysql_fetch_array($res)) { echo "<b><a class=title>".$myrow['title']."</a></b>"; echo "<a class=title_d>".$myrow['date_news']."</a><br><hr>"; if(isset($_GET['full']) && $_GET['full']==$myrow['id']) { echo "<div class=scroll><a class=mess>".$myrow['fullnews']."<br><br></a></div>"; echo "<a href=books.php>Скрыть</a><hr><br>"; } else { echo "<a class=mess>".$myrow['shortnews']."<br><br></a>"; echo "<a href=books.php?full=".$myrow['id']." class=button_full>Читать полностью</a><br><br><br>"; } } ?>