Can't show Azerbaijan characters ?? Help me please, How to fix this ?
Asked
Active
Viewed 1,321 times
0
-
1What character sets do you use? – Sverri M. Olsen May 03 '14 at 19:34
-
this ( ə ü ş ç ğ ı ö ) – user3393795 May 03 '14 at 19:36
-
That is not a character set. – Sverri M. Olsen May 03 '14 at 19:39
-
You might want to provide some code in the languages of the tags you added. – jeroen May 03 '14 at 19:47
1 Answers
2
you need to set your charterer to utf-8
<!DOCTYPE html>
<html>
<head>
<title>Hello!</title>
<meta charset="utf-8">
</head>
<body>
<?php
echo("Hello, World!");
?>
</body>
</html>
second : save your file as utf-8 without BOM

Mohamed Melouk
- 182
- 2
- 11