Troubles with cyrillic text displaying

URL: https://mvspb.000webhostapp.com/access.php
symbols � instead of cyrillic symbols
i added this string to .htaccess “AddDefaultCharset UTF-8”, but it didnt help

As per Discord ticket.

Now you can specify the character set inside the document by appending

<meta charset="CHARACTER_SET"> tag within <head> [...] </head>

On your index.php I’ve added

header("Content-Type: text/html; charset=UTF-8", true); 

Change UTF-8 to what you need I think and it should be good?

1 Like