The table name is gegevens
And into that table:
id //add this to give an easy primary key as name maybe duplicated
naam (translate to English: name)
email
website
bericht (translate to English: message)
date_inserted //add a datestamp on registration - love those datestamps ever so handy for all sorts of things
<?
$sql="select * from gegevens where order by id desc limit 10"
//selects the last 10 results from the DB based on an
//autoincrement field called id
$result=mysql_query($sql) or die("Database not available");
//you'll need to code for the db connection whatever wya you
//choose
echo "<table>";
while ($rows=mysql_fetch_array($result)){
$username=$rows['naam'];
$email =$rows['email'];
$message=$rows['bericht'];
$dateleft=$rows['date_inserted'];
$website=$rows['website'];
//note the above is not really needed, you can reference the
//data another way, but i put here for clarity
echo "<tr><td>$username</td><td>$email</td>
<td>$message</td><td>$dateleft</td><td>
$website</td></tr>";
//write out the data
} //end the loop
echo "</table>";
?>
this should do it....
and hey
if you're not dutch, you're not much😃