Maybe the topic will seem silly, however, what is the name of the system that updates the contents of the news page, for example, from 1 to 2 pages?
Example:

Meaning?

Googled, but could not find and close something like that.
If possible, drop a link explaining how to do this.

  • 2
    such a system is called paginated elements, or pagination. You need to 1) know how much all the news is 2) know the number of the requested page 3) know the number of news per page 4) write a request to fetch data from the database. in mysql, for example, this is usually achieved by a type code .... LIMIT x, y where х takes a value (pageNum - 1)*pageSize and y - pageSize - teran

1 answer 1

Pagination is called. Perhaps these materials will help you:

Simple pagination on php

How to break output from mysql page by page