Ok, well I don`t know how to make more pages to view more news, but I do know how to make a "news on page limit" If you use a statement in your code like this:" q= SELECT * FROM (table here) " Put " DESC LIMIT= 0,(how many news posts you want on a page) "at the end. It should look like this: "q= SELECT * FROM (table) DESC LIMIT=0,(number)" Hope that helps!
Pagination is very complicated.
I can post what I use on my site, but you MUST know advanced php and SQL. Or it will appear as gibberish. And it won't work if you don't know what to do.
Here's what I did for my guestbook:
$sql = '
SELECT COUNT(1) AS `posts`
FROM t_guestbook
WHERE active = "true"';
if($result = $mysqli->query($sql)){
if($row = $result->fetch_object()){
$post_count = $row->posts;
$page_count = ceil($post_count/20);
}
}