0

enter image description here

Can't show Azerbaijan characters ?? Help me please, How to fix this ?

user3393795
  • 89
  • 2
  • 9

1 Answers1

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