Hello,
There is a very nice MySQL feature called LIMIT:
$start = (int)($_GET['start'] / 5)
mysql_query("SELECT * FROM dbNews ORDER BY newsDate DESC LIMIT $start, 5");
Then you can come up with the code that displays links like
$url = "<a href='mypage.php?start=$start'>Page $start</a> "
See if you can create the loop
