Hello,
I think i have a really simple question.
I have this function
include("config.php");
$db = mysql_connect($Host,$Gebruiker,$Passwoord);
$sql="SELECT * FROM nieuws ORDER BY datum";
$res=mysql_query($sql, $db);
while ($ligne = mysql_fetch_object ($res))
{
echo $ligne->datum
echo $ligne->titel
echo $ligne->auteur
echo $ligne->commentaar
}
mysql_free_result ($res);
But when this will be showed i want only 5 posts be revealed.
And at the bottom a link wich shows (on a different page) All the other records on one page (only the title)
Does anybody has the answer for this simple question ??
Benson