[PHP MyAdmin, Apache] The server has the utf8_general_ci encoding, in the php UTF-8 editor, the local storage is displayed on the local computer. What is the reason? All tables are also in the correct encoding.
<?php $connection = mysqli_connect ('127.0.0.1', 'root', '', 'test_db'); if( $connection == false ) { echo 'Не удалось подключиться к базе данных!<br>'; echo mysqli_connect_error(); exit(); } else { echo 'Работает подключение'; } ?> 
