User friendly phpMyAdmin for end users?

I have several web applications for different clients, each of which is based on a MySQL database. There is a lot of time for each database so that users can manage the database (insert, delete, create reports, etc.).

Is there any type of web interface (similar to phpMyAdmin) that is convenient and safe (will not allow the user to change the structure of the database)?

Since I use shared hosting on GoDaddy, I can not configure different users with different permissions to install phpMyAdmin ...

Thanks!

+4
source share
2 answers

sqlBuddy ( http://sqlbuddy.com/ ) is an ajax-based input application that you might want to check out. You can log in as the mysql user configured for your website and restrict it to just the base, i.e. CRUD. You can have as many copies as you want and they do not interfere with each other, or at least I did not have problems with two or three copies at a time.

+3
source

Go with the smaller, less fully functional phpadmin tool and change it a bit.

At 10K, PHP Mini Admin would be a good choice.

Or, if this is too minimal, check out the Adminer .

+2
source

Source: https://habr.com/ru/post/1337339/


All Articles