Hi,
Im trying to make show the final 5 entries. So im running a query from my db, i can make them show all.
I run sort, arsort or any sort at the query, but it completely disapears or it doesn't work at all..
$query = "SELECT woonplaats FROM aanmelding";
$result = mysql_query($query) or die(mysql_error()."werkt niet 2");
$row = mysql_fetch_array($result, MYSQL_BOTH);
echo("<table><td><font size='2' face='arial' color='#000000'>" . $row['woonplaats'] . "</font></td>");
while ($row = mysql_fetch_array($result))
{
echo ("<tr>
<td><font size='2' face='arial' color='#000000'>" . $row['woonplaats'] . "</font></td>
</tr>");
}
echo("</table>");