摘要:
有时候数据库密码改了或者数据库删了,就会有一个mysqli的链接报错,是因为直接使用了类似代码 $connection = new mysqli('127.0.0.1', 'test_user', 'test_password', 'test_database'); 然后就会出来这样一个警告 PHP 阅读全文
摘要:
create user test_user@'%' identified by 'test2022@'; grant all privileges on test.* to test_user@'%' with grant option; flush privileges; 这样就可以创建一个叫 t 阅读全文