You need to edit your MySQL query with limit and offset.
I.E.
$limit = 6;
if (!isset($offset))
{
$offset = 0;
};
$sql = "select * from tblNews limit $offset,$limit order by date asc";
then, add next / previous logic to $offset variable. Make sure you carry the $offset variable on all the navigational links.
There is an article on the Articles section of this site with example. Check it out.
Kai