You'll need a beginner's understanding of PHP, and probably some understanding of relational databases.
Pagination is often implemented with some simple query parameters.
stackoverflow.com/myResults.php?page=1
The page increments the query parameter:
stackoverflow.com/myResults.php?page=2
On the back end, the page value usually corresponds to the limits and offsets in the query that is being used to generate the results.
Related Questions:
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…