here is a code you could use with the above sql line:
$result=mysql_query("SELECT news FROM newstable ORDER BY date DESC LIMIT 0,5") or die(mysql_error());
while (list($newsLine)=mysql_fetch_array($result)) {
echo "<p>".htmlspecialchars($newsLine)."</p>\n";
}
mysql_free_result($result);
In this example you use only one variable and the while loop will execute exactly 5 times