Once you have them in your array, assuming this has two dimensions: First dimension each record, second the elements of the records: ID, DATE, TITLE, MESSAGE, (Or 0, 1, 2, 3, depending on the way you fill the array)
$min display: First message from array to display
$maxdisplay: Last message you want to display
$i=$mindisplay;
for ($i < $maxdisplay)
{
echo $array[$i]["ID"];
echo $array[$i]["DATE"];
echo $array[$i]["TITLE"];
echo $array[$i]["MESSAGE"];
$i++
}