I'm stuck with a boolean = false result. The database query responded that the code was approved, so correct!
None of the form solutions helped me out, so now i hope you can give me a answer. here is my code. thanks for your help for now!
$query = "SELECT FROM bedrijfsgegevens
ORDER BY omschrijvingen.datum";
$result = $db->query($query);
while ($row = mysql_fetch_assoc($result)) {
echo "<tr><td>van <a href='mailto:" . $row["email"] . "'>" . $row["naam"] . "</a></td>
<td>op " . $row["datum"] . "</td></tr>\n";
echo "<tr><td colspan='2'>" . $row["omschrijving"] . "</td></tr>\n";
echo "<tr><td colspan='2'> </td></tr>\n";
}