Warning: mysqli_connect(): (HY000/1045): Access denied for user 'record'@'localhost' (using password: YES) in C:\xampp\htdocs\mynk\config.php on line 7
Asked
Active
Viewed 455 times
0
-
1You have put wrong password for your localhost server in your config.php file – fahim152 Jan 20 '21 at 05:44
1 Answers
1
did you create record user?
CREATE USER 'record'@'localhost';
GRANT ALL PRIVILEGES ON your_database_name.* To 'record'@'localhost' IDENTIFIED BY 'your_password';
FLUSH PRIVILEGES;
or you can change that "record" user to "root" user
reference:Create new user in MySQL and give it full access to one database

Ricardinho
- 599
- 9
- 22