Alright so I have got a database that contains data of some different countries such as capital, continent, population. In my language, the continent Asia is translated to Azië. But when I import the data through a query it displays it like this: Azi�
<!DOCTYPE html>
<html>
<head>
<title>Opdracht 36</title>
<meta charset="utf-8" />
</head>
<body>
<table>
<tr>
<strong>
<th>land_id</th>
<th>land</th>
<th>hoofdstad</th>
<th>werelddeel</th>
<th>inwoners</th>
</strong>
</tr>
<?php
$servername = "localhost";
$username = "root";
$password = "";
mysql_connect($servername, $username, $password);
mysql_select_db("Enigma");
$query = "SELECT * FROM landen ORDER BY werelddeel";
$result = mysql_query($query);
while ($row = mysql_fetch_array($result))
{
?>
<tr>
<td><?php echo $row["land_id"]; ?></td>
<td><?php echo $row["land"]; ?></td>
<td><?php echo $row["hoofdstad"]; ?></td>
<td><?php echo $row["werelddeel"]; ?></td>
<td><?php echo $row["inwoners"]; ?></td>
</tr>
<?php
}
?>
</table>
</body>
</html>