I got a MS SQL table for translation of my webpagel, when I change my language to german there are words what are not shows properly an example in DB:
EL_ID TEXT_EN TEXT_DE
el10 Reset Löschen
but when I use in my html/php page it is not showing properly:
[10] => Array
(
[0] => el10
[1] => L�schen
)
in my webpage I got activated:
<!DOCTYPE html>
<HTML>
<HEAD>
<meta charset="UTF-8">
<TITLE>
</TITLE>
...
It is the data what is carried out from the DB
or the HTML
presentation the issue?