I can edit database in console with the mysql account but in php i can’t create tables.
Help me please!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
The inability to create tables is a separate issue from the inability to connect.
I will assume you’ve not granted permissions for the user you have configured in your PHP script to do anything on that database.
The simplest method is to give the user the correct permission. Assuming you want them to connect via localhost only, and your user’s name is “your_user”, and the password for that use is “some_password”, running this set of queries would fix it for you. Change the database name, user and password to match what you have set in the PHP script:
GRANT ALL PRIVILEGES ON your_database.* TO 'your_user'@'localhost' IDENTIFIED BY 'some_password';
FLUSH PRIVILEGES;
quit;
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.