Availability of databases and tables given in the code: DATABASE - database, TABLES - users
<?php echo 'Проверка работоспособности проекта!'; $db = mysqli_connect( "127.0.0.1", "root", "root"); mysqli::select_db("database", $db); $result = mysqli::query("SELECT * FROM `users` "); var_dump($result); In the browser, the project shows a white screen (although the test echo itself works) ...
select 1+1- Alex Krass