I want to run and execute such a script, here is its code from the file:
<html> <head> <title>Пример</title> </head> <body> <?php echo 'Hello!'; ?> </body> </html> When doing it in the console, I get this:
C:\Users\Администратор>cd C:\WebServers\home\test1.ru\www C:\WebServers\home\test1.ru\www>php index.php <html> <head> <title>╨Я╤А╨╕╨╝╨╡╤А</title> </head> <body> Hello! </body> </html> Why, when executing the script, in the console I get all this html code, and not the result "Hello!"
Encoding costs UTF-8 (without BOM)
And the word "Example" in the title block in general gives out an incomprehensible encoding.